| 1234567891011121314151617 |
- #
- # 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
|