| 123456789101112131415161718 |
- #
- # Makefile.target
- #
- Timer.a.$(ARCH) : $(OBJECTS)
- $(call build_target_library_arch,$@,$^)
- Timer.a:
- $(call build_target,$@)
- test.$(ARCH): $(OBJECTS) Test/Test.o.$(ARCH) | Timer.a.$(ARCH)
- $(call build_target_arch,$@,$^)
- test:
- $(call build_target,$@)
- .DEFAULT_GOAL := Timer.a
- TARGETS += Timer.a test
|