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.
23 lines
480 B
23 lines
480 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 = 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 $@ $<
|
|
|
|
install:
|
|
install -m 755 YSFReflector /usr/local/bin/
|
|
|
|
clean:
|
|
$(RM) YSFReflector *.o *.d *.bak *~
|
|
|