Makefile.target 307 B

123456789101112131415161718
  1. #
  2. # Makefile.target
  3. #
  4. Timer.a.$(ARCH) : $(OBJECTS)
  5. $(call build_target_library_arch,$@,$^)
  6. Timer.a:
  7. $(call build_target,$@)
  8. test.$(ARCH): $(OBJECTS) Test/Test.o.$(ARCH) | Timer.a.$(ARCH)
  9. $(call build_target_arch,$@,$^)
  10. test:
  11. $(call build_target,$@)
  12. .DEFAULT_GOAL := Timer.a
  13. TARGETS += Timer.a test