Files
PresenceDetection/Makefile.target
T
2019-04-18 20:51:50 +02:00

20 lines
368 B
SYSTEMD

#
# Makefile.target
#
PresenceDetection.$(ARCH): $(OBJECTS) Application/PresenceDetection.o.$(ARCH)
$(call build_target_arch,$@,$^)
test.$(ARCH): $(OBJECTS) Application/Test.o.$(ARCH)
$(call build_target_arch,$@,$^)
PresenceDetection:
$(call build_target,$@)
test:
$(call build_target,$@)
.DEFAULT_GOAL := PresenceDetection
TARGETS += PresenceDetection test