aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2021-02-13 23:14:00 +1300
committerDavid Phillips <david@yeah.nah.nz>2021-02-13 23:24:22 +1300
commitce9e7b1ebd506f8b12bf1c26fedd5dddd3cdd653 (patch)
treecc2b49dc606cfc56b930f78fe910982028eae684 /Makefile
parente8042274b1722e5a0a2b99bea31bafe191d936f1 (diff)
downloadaltimeter-ce9e7b1ebd506f8b12bf1c26fedd5dddd3cdd653.tar.xz
Initialise data manager with ISA pressure
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b5cb2e8..05c24bc 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ SIM_ELF = build/altimeter_sim.elf
# options for native (i.e. unit test)
UNITY_SRC ?= unity/src
-CFLAGS += -Wall -Wextra -I$(UNITY_SRC)
+CFLAGS += -Wall -Wextra -I$(UNITY_SRC) -g3
LDFLAGS += -lm
# options for cross-compile
@@ -58,7 +58,9 @@ TEST_OBJ = \
$(NATIVE_DIR)/$(UNITY_SRC)/unity.o \
$(NATIVE_DIR)/test_runner.o \
$(NATIVE_DIR)/test_util.o \
- $(NATIVE_DIR)/test_test.o \
+ $(NATIVE_DIR)/test_data_manager.o \
+ $(NATIVE_DIR)/data_manager.o \
+ $(NATIVE_DIR)/barometer_sim.o \
$(NATIVE_DIR)/util.o
REAL_OBJ = \