34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
.SUFFIXES: .c .o
|
|
|
|
COMPILE = $(CC) $(CFLAGS)
|
|
INC_PATH = -I../common -I/usr/local/include
|
|
LIB_PATH = $(LIBS) -lfastcommon
|
|
TARGET_PATH = $(TARGET_PREFIX)/bin
|
|
CONFIG_PATH = $(TARGET_CONF_PATH)
|
|
|
|
SHARED_OBJS = ../common/fdfs_global.o \
|
|
tracker_proto.o tracker_mem.o tracker_service.o tracker_status.o \
|
|
tracker_global.o tracker_func.o \
|
|
fdfs_shared_func.o tracker_nio.o tracker_relationship.o \
|
|
$(TRACKER_EXTRA_OBJS)
|
|
|
|
ALL_OBJS = $(SHARED_OBJS)
|
|
|
|
ALL_PRGS = fdfs_trackerd
|
|
|
|
all: $(ALL_OBJS) $(ALL_PRGS)
|
|
.o:
|
|
$(COMPILE) -o $@ $< $(SHARED_OBJS) $(LIB_PATH) $(INC_PATH)
|
|
.c:
|
|
$(COMPILE) -o $@ $< $(ALL_OBJS) $(LIB_PATH) $(INC_PATH)
|
|
.c.o:
|
|
$(COMPILE) -c -o $@ $< $(INC_PATH)
|
|
install:
|
|
mkdir -p $(TARGET_PATH)
|
|
mkdir -p $(CONFIG_PATH)
|
|
cp -f $(ALL_PRGS) $(TARGET_PATH)
|
|
if [ ! -f $(CONFIG_PATH)/tracker.conf.sample ]; then cp -f ../conf/tracker.conf $(CONFIG_PATH)/tracker.conf.sample; fi
|
|
if [ ! -f $(CONFIG_PATH)/storage_ids.conf.sample ]; then cp -f ../conf/storage_ids.conf $(CONFIG_PATH)/storage_ids.conf.sample; fi
|
|
clean:
|
|
rm -f $(ALL_OBJS) $(ALL_PRGS)
|