wangzhengquan
2020-11-27 b5fe7f9a3bcc2f20d127f9081c1cf132091f6a57
src/Makefile
@@ -12,11 +12,11 @@
# 开源工具包
#LDLIBS += -lusgcommon
LDLIBS += -lusgcommon
#-I$(ROOT)/include/usgcommon
INCLUDES += -I./queue -I./socket -I./common/include
INCLUDES += -I./queue -I./socket -I./common/include -I$(ROOT)/include/usgcommon
SOURCES := $(wildcard *.c ./**/*.c)
OBJS   = $(patsubst %.c, $(DEST)/%.o, $(SOURCES)) 
@@ -84,6 +84,7 @@
.PHONY: clean
clean:
   rm -f $(OBJS) $(MYLIBS) $(DEPENDENCES) $(TEMPFILES)
   rm -rf $(DEST)/*
-include $(DEPENDENCES)