Makefile.target 335 B

1234567891011121314151617
  1. #
  2. # Makefile.target
  3. #
  4. PresenceDetection.$(ARCH): $(OBJECTS) Application/PresenceDetection.o.$(ARCH)
  5. $(call target,$@,$^)
  6. test.$(ARCH): $(OBJECTS) Application/Test.o.$(ARCH)
  7. $(call target,$@,$^)
  8. PresenceDetection: PresenceDetection.$(ARCH)
  9. test: test.$(ARCH)
  10. .DEFAULT_GOAL := PresenceDetection
  11. TARGETS += PresenceDetection test