aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2021-02-27 23:25:04 +1300
committerDavid Phillips <david@yeah.nah.nz>2021-02-27 23:25:54 +1300
commit64a168c77568f8886662b535515ff25d056042e9 (patch)
treead0044e2c51d794b7affb4b2386afb2ed7c45b7a /Makefile
parent4118386ca9a4cb717f0d79f636586f0151d3e985 (diff)
downloadaltimeter-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--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a2546df..c1f53b2 100644
--- a/Makefile
+++ b/Makefile
@@ -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)