mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
18 lines
534 B
Makefile
18 lines
534 B
Makefile
OBJECTS = IRCDDBGatewayConfigApp.o IRCDDBGatewayConfigFrame.o IRCDDBGatewayConfigGatewaySet.o IRCDDBGatewayConfigIrcDDBSet.o \
|
|
IRCDDBGatewayConfigMiscellaneousSet.o
|
|
|
|
all: ircddbgatewayconfig
|
|
|
|
ircddbgatewayconfig: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(GUILIBS) -o ircddbgatewayconfig
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 ircddbgatewayconfig $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) ircddbgatewayconfig *.o *.d *.bak *~
|
|
|