mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-20 23:20:19 +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 *~
|
|
|