You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
861 B
36 lines
861 B
CC = cc
|
|
CXX = c++
|
|
CFLAGS = -g -O3 -Wall -std=c++0x -pthread -DHAVE_LOG_H -DUDP_SOCKET_MAX=2
|
|
LIBS = -lpthread
|
|
LDFLAGS = -g
|
|
|
|
OBJECTS = BlockList.o Conf.o Log.o Network.o StopWatch.o Thread.o Timer.o UDPSocket.o Utils.o YSFReflector.o
|
|
|
|
all: YSFReflector
|
|
|
|
YSFReflector: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) $(CFLAGS) $(LIBS) -o YSFReflector
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -c -o $@ $<
|
|
|
|
YSFReflector.o: GitVersion.h FORCE
|
|
|
|
.PHONY: GitVersion.h
|
|
|
|
FORCE:
|
|
|
|
install:
|
|
install -m 755 YSFReflector /usr/local/bin/
|
|
|
|
clean:
|
|
$(RM) YSFReflector *.o *.d *.bak *~ GitVersion.h
|
|
|
|
# Export the current git version if the index file exists, else 000...
|
|
GitVersion.h:
|
|
ifneq ("$(wildcard ../.git/index)","")
|
|
echo "const char *gitversion = \"$(shell git rev-parse HEAD)\";" > $@
|
|
else
|
|
echo "const char *gitversion = \"0000000000000000000000000000000000000000\";" > $@
|
|
endif
|