18 lines
335 B
SYSTEMD
18 lines
335 B
SYSTEMD
#
|
|
# Makefile.target
|
|
#
|
|
|
|
PresenceDetection.$(ARCH): $(OBJECTS) Application/PresenceDetection.o.$(ARCH)
|
|
$(call target,$@,$^)
|
|
|
|
test.$(ARCH): $(OBJECTS) Application/Test.o.$(ARCH)
|
|
$(call target,$@,$^)
|
|
|
|
PresenceDetection: PresenceDetection.$(ARCH)
|
|
test: test.$(ARCH)
|
|
|
|
.DEFAULT_GOAL := PresenceDetection
|
|
|
|
TARGETS += PresenceDetection test
|
|
|