Update Makefiles

This commit is contained in:
2019-04-18 20:51:50 +02:00
parent add3087de3
commit ea71693886
2 changed files with 104 additions and 71 deletions
+7 -5
View File
@@ -3,15 +3,17 @@
#
PresenceDetection.$(ARCH): $(OBJECTS) Application/PresenceDetection.o.$(ARCH)
$(call target,$@,$^)
$(call build_target_arch,$@,$^)
test.$(ARCH): $(OBJECTS) Application/Test.o.$(ARCH)
$(call target,$@,$^)
$(call build_target_arch,$@,$^)
PresenceDetection: PresenceDetection.$(ARCH)
test: test.$(ARCH)
PresenceDetection:
$(call build_target,$@)
test:
$(call build_target,$@)
.DEFAULT_GOAL := PresenceDetection
TARGETS += PresenceDetection test