20 lines
368 B
SYSTEMD
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
|