diff options
author | David Phillips <david@yeah.nah.nz> | 2021-02-27 23:25:04 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2021-02-27 23:25:54 +1300 |
commit | 64a168c77568f8886662b535515ff25d056042e9 (patch) | |
tree | ad0044e2c51d794b7affb4b2386afb2ed7c45b7a /Makefile | |
parent | 4118386ca9a4cb717f0d79f636586f0151d3e985 (diff) | |
download | altimeter-64a168c77568f8886662b535515ff25d056042e9.tar.xz |
Re-add basic display-only logic
This module will be extended later with input and UI/menu logic
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,6 +71,7 @@ REAL_OBJ = \ $(REAL_DIR)/altimeter.o \ $(REAL_DIR)/util.o \ $(REAL_DIR)/timer.o \ + $(REAL_DIR)/ui.o \ $(REAL_DIR)/data_manager.o SIM_OBJ = \ @@ -79,6 +80,7 @@ SIM_OBJ = \ $(SIM_DIR)/altimeter.o \ $(SIM_DIR)/util.o \ $(SIM_DIR)/timer.o \ + $(SIM_DIR)/ui.o \ $(SIM_DIR)/data_manager.o ALL_OBJ = $(TEST_OBJ) $(REAL_OBJ) $(SIM_OBJ) |