mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-02-04 22:34:19 +01:00
15 lines
415 B
Makefile
15 lines
415 B
Makefile
OBJECTS = IRCDDBGatewayApp.o IRCDDBGatewayFrame.o IRCDDBGatewayLogRedirect.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o \
|
|
IRCDDBGatewayThreadHelper.o
|
|
|
|
all: ircddbgateway
|
|
|
|
ircddbgateway: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../Common/Common.a ../ircDDB/IRCDDB.a $(LDFLAGS) $(LIBS) -o ircddbgateway
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../ircDDB -c -o $@ $<
|
|
|
|
clean:
|
|
$(RM) ircddbgateway *.o *.d *.bak *~
|
|
|