mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-03-01 18:43:54 +01:00
15 lines
458 B
Makefile
15 lines
458 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) $(LIBS) -o ircddbgatewayconfig
|
||
|
|
|
||
|
|
%.o: %.cpp
|
||
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
||
|
|
|
||
|
|
clean:
|
||
|
|
$(RM) ircddbgatewayconfig *.o *.d *.bak *~
|
||
|
|
|