| 12345678910111213141516171819202122232425 |
- #
- # Makefile.target
- #
- DataStorageAPI.$(ARCH): $(OBJECTS) Application/DataStorageAPI.o.$(ARCH)
- $(call build_target_arch,$@,$^)
- DataCondenser.$(ARCH): $(OBJECTS) Application/DataCondenser.o.$(ARCH)
- $(call build_target_arch,$@,$^)
- DataImporter.$(ARCH): $(OBJECTS) Application/DataImporter.o.$(ARCH)
- $(call build_target_arch,$@,$^)
- DataStorageAPI:
- $(call build_target,$@)
- DataCondenser:
- $(call build_target,$@)
- DataImporter:
- $(call build_target,$@)
- .DEFAULT_GOAL := DataStorageAPI
- TARGETS += DataStorageAPI DataCondenser DataImporter
|