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