ircDDBGateway/ircDDBGateway/MakefileGUI
2018-07-12 20:23:05 +01:00

18 lines
525 B
Plaintext

OBJECTS = IRCDDBGatewayApp.o IRCDDBGatewayFrame.o IRCDDBGatewayLogRedirect.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o \
IRCDDBGatewayThreadHelper.o
all: ircddbgateway
ircddbgateway: $(OBJECTS)
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a ../ircDDB/IRCDDB.a $(LDFLAGS) $(GUILIBS) -o ircddbgateway
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -I../ircDDB -c -o $@ $<
install:
install -g bin -o root -m 0775 ircddbgateway $(BINDIR)
clean:
$(RM) ircddbgateway *.o *.d *.bak *~