mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-21 06:03:58 +00:00
14 lines
415 B
Makefile
14 lines
415 B
Makefile
OBJECTS = IRCDDBGatewayApp.o IRCDDBGatewayFrame.o IRCDDBGatewayLogRedirect.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o \
|
|
IRCDDBGatewayThreadHelper.o
|
|
|
|
all: ircddbgateway
|
|
|
|
ircddbgateway: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../Common/Common.a ../ircDDB/IRCDDB.a $(LDFLAGS) $(LIBS) -o ircddbgateway
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../ircDDB -c -o $@ $<
|
|
|
|
clean:
|
|
$(RM) ircddbgateway *.o *.d *.bak *~
|
|
|