Negatus/Makefile

22 строки
325 B
Makefile
Исходник Обычный вид История

2012-08-14 08:54:18 +04:00
SRCS=\
BufferedSocket.cpp \
2012-08-15 01:32:05 +04:00
CommandEventHandler.cpp \
2012-08-14 08:54:18 +04:00
Logging.cpp \
Reactor.cpp \
SUTAgent.cpp \
SessionEventHandler.cpp \
SocketAcceptor.cpp
2012-08-14 08:54:18 +04:00
OBJS=$(subst .cpp,.o,$(SRCS))
all: agent
agent: $(OBJS)
$(LD) -o agent $(OBJS) $(LDFLAGS) $(LDLIBS)
%.o: %.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
clean:
rm -f *.o agent