|
|
|
|
@ -1,14 +1,13 @@
|
|
|
|
|
CC = cc
|
|
|
|
|
|
|
|
|
|
ROOTPATH=../../..
|
|
|
|
|
INCLUDE = -I./easylogger/inc -I./easylogger/plugins/ -I$(ROOTPATH)/easylogger/plugins/ -I$(ROOTPATH)/easylogger/inc
|
|
|
|
|
INCLUDE = -I./easylogger/inc -I$(ROOTPATH)/easylogger/inc -I$(ROOTPATH)/easylogger/plugins/file
|
|
|
|
|
LIB=-lpthread
|
|
|
|
|
|
|
|
|
|
OBJ += $(patsubst %.c, %.o, $(wildcard *.c))
|
|
|
|
|
OBJ += $(patsubst %.c, %.o, $(wildcard $(ROOTPATH)/easylogger/src/*.c))
|
|
|
|
|
OBJ += $(patsubst %.c, %.o, $(wildcard $(ROOTPATH)/easylogger/plugins/file/elog_file.c))
|
|
|
|
|
OBJ += $(patsubst %.c, %.o, $(wildcard easylogger/port/*.c))
|
|
|
|
|
OBJ += $(patsubst %.c, %.o, $(wildcard easylogger/plugins/file/*.c))
|
|
|
|
|
|
|
|
|
|
CFLAGS = -O0 -g3 -Wall
|
|
|
|
|
target = EasyLoggerLinuxDemo
|
|
|
|
|
|