30 lines
592 B
Makefile
30 lines
592 B
Makefile
#
|
|
# Makefile.conf
|
|
#
|
|
|
|
LIBRARIES += MySQL
|
|
LIBRARIES += SQLite
|
|
LIBRARIES += Http
|
|
LIBRARIES += DataStorage
|
|
LIBRARIES += Timer
|
|
LIBRARIES += Logging
|
|
LIBRARIES += Utilities
|
|
LIBRARIES += DateTime
|
|
|
|
CFLAGS += -I$(ROOTPATH)/Libraries/clipp/include
|
|
CFLAGS += -I$(ROOTPATH)/Libraries/inih
|
|
CFLAGS += -I$(ROOTPATH)/Libraries/json/include/nlohmann -I$(ROOTPATH)/Libraries/json/include
|
|
|
|
LFLAGS += -pthread
|
|
|
|
CFLAGS += -Wno-stringop-truncation
|
|
CFLAGS += -I$(ROOTPATH) -I$(ROOTPATH)/Libraries
|
|
|
|
DEBUGDIR := .debug
|
|
|
|
DEFAULTARCH := x86_64
|
|
TARGETS += DataStorageAPI
|
|
TARGETS += DataCondenser
|
|
TARGETS += DataImporter
|
|
|