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