make clean

pull/1/merge
yuqing 2015-08-26 19:00:15 +08:00
parent 31149bb6e9
commit c0b48a7bf8
2 changed files with 7 additions and 3 deletions

View File

@ -125,3 +125,7 @@ perl -pi -e "s#\\\$\(LIBS\)#$LIBS#g" Makefile
perl -pi -e "s#\\\$\(LIB_VERSION\)#$LIB_VERSION#g" Makefile
make $1 $2 $3
if [ "$1" = "clean" ]; then
/bin/rm -f Makefile _os_define.h
fi

View File

@ -26,7 +26,7 @@ HEADER_FILES = common_define.h hash.h chain.h logger.h base64.h \
fast_timer.h process_ctrl.h fast_mblock.h \
connection_pool.h fast_mpool.h
ALL_OBJS = $(STATIC_OBJS) $(FAST_SHARED_OBJS)
ALL_OBJS = $(FAST_STATIC_OBJS) $(FAST_SHARED_OBJS)
ALL_PRGS =
SHARED_LIBS = libfastcommon.so
@ -39,9 +39,9 @@ libfastcommon.so:
libfastcommon.a: $(FAST_STATIC_OBJS)
ar rcs $@ $(FAST_STATIC_OBJS)
.o:
$(COMPILE) -o $@ $< $(STATIC_OBJS) $(LIB_PATH) $(INC_PATH)
$(COMPILE) -o $@ $< $(FAST_STATIC_OBJS) $(LIB_PATH) $(INC_PATH)
.c:
$(COMPILE) -o $@ $< $(STATIC_OBJS) $(LIB_PATH) $(INC_PATH)
$(COMPILE) -o $@ $< $(FAST_STATIC_OBJS) $(LIB_PATH) $(INC_PATH)
.c.o:
$(COMPILE) -c -o $@ $< $(INC_PATH)
.c.lo: