Files
Http/Makefile.target
T
2020-06-14 16:33:19 +02:00

18 lines
301 B
SYSTEMD

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