Update Makefiles

This commit is contained in:
2020-08-25 09:20:20 +02:00
parent 99a0e38e6e
commit 232ebb7600
4 changed files with 11 additions and 21 deletions
+4 -7
View File
@@ -2,12 +2,9 @@
# Makefile.conf # Makefile.conf
# #
LFLAGS += -lUtilities LIBRARIES += Utilities
LFLAGS += -L$(ROOTPATH)/Libraries/Utilities/lib/$(ARCH)
CFLAGS += -I$(ROOTPATH)/Libraries/Utilities/include
LFLAGS += -lColor
LFLAGS += -L$(ROOTPATH)/lib/$(ARCH)
CFLAGS += -I$(ROOTPATH) -I$(ROOTPATH)/include
DEBUGDIR := .debug DEBUGDIR := .debug
TARGETS += Color.a
+6
View File
@@ -0,0 +1,6 @@
#
# Makefile.dep
#
LFLAGS += -lColor
-13
View File
@@ -1,13 +0,0 @@
#
# Makefile.target
#
Color.a.$(ARCH) : $(OBJECTS)
$(call build_target_library_arch,$@,$^)
Color.a:
$(call build_target,$@)
.DEFAULT_GOAL := Color.a
TARGETS += Color.a