Initial commit

This commit is contained in:
2020-05-01 11:03:00 +02:00
commit 3a12256d49
16 changed files with 278 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#
# Makefile.target
#
DataStorage.a.$(ARCH) : $(OBJECTS)
$(call build_target_library_arch,$@,$^)
DataStorage.a:
$(call build_target,$@)
test.$(ARCH): $(OBJECTS) Test/Test.o.$(ARCH) | DataStorage.a.$(ARCH)
$(call build_target_arch,$@,$^)
test:
$(call build_target,$@)
.DEFAULT_GOAL := DataStorage.a
TARGETS += DataStorage.a test