Update Makefiles

This commit is contained in:
2020-08-25 09:32:02 +02:00
parent f19bfd750b
commit ac4c6da00d
4 changed files with 11 additions and 18 deletions
+3 -4
View File
@@ -2,8 +2,7 @@
# Makefile.conf # Makefile.conf
# #
LFLAGS += -lSQLite
LFLAGS += -L$(ROOTPATH)/lib/$(ARCH)
CFLAGS += -I$(ROOTPATH) -I$(ROOTPATH)/include
DEBUGDIR := .debug DEBUGDIR := .debug
TARGETS += SQLite.a
+7
View File
@@ -0,0 +1,7 @@
#
# Makefile.dep
#
LFLAGS += -lSQLite
LFLAGS += -lsqlite3
-13
View File
@@ -1,13 +0,0 @@
#
# Makefile.target
#
SQLite.a.$(ARCH) : $(OBJECTS)
$(call build_target_library_arch,$@,$^)
SQLite.a:
$(call build_target,$@)
.DEFAULT_GOAL := SQLite.a
TARGETS += SQLite.a