mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-26 01:44:18 +01:00
18 lines
525 B
Plaintext
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 *~
|
|
|