2018-05-15 20:32:38 +02:00
|
|
|
OBJECTS = IRCDDBGatewayConfigApp.o IRCDDBGatewayConfigFrame.o IRCDDBGatewayConfigGatewaySet.o IRCDDBGatewayConfigIrcDDBSet.o \
|
|
|
|
|
IRCDDBGatewayConfigMiscellaneousSet.o
|
|
|
|
|
|
|
|
|
|
all: ircddbgatewayconfig
|
|
|
|
|
|
|
|
|
|
ircddbgatewayconfig: $(OBJECTS)
|
2018-05-16 23:15:11 +02:00
|
|
|
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(GUILIBS) -o ircddbgatewayconfig
|
2018-05-15 20:32:38 +02:00
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
|
|
|
|
|
2018-05-15 22:19:47 +02:00
|
|
|
install:
|
|
|
|
|
install -g bin -o root -m 0775 ircddbgatewayconfig $(BINDIR)
|
|
|
|
|
|
2018-05-15 20:32:38 +02:00
|
|
|
clean:
|
|
|
|
|
$(RM) ircddbgatewayconfig *.o *.d *.bak *~
|
|
|
|
|
|