Files
MySQL/Makefile.target
T
2020-05-01 11:15:15 +02:00

18 lines
306 B
SYSTEMD

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