Files
Timer/Makefile.target
T
2020-06-10 10:16:28 +02:00

19 lines
307 B
SYSTEMD

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