mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-20 15:10:18 +01:00
16 lines
567 B
Makefile
16 lines
567 B
Makefile
OBJECTS = StarNetServerApp.o StarNetServerCallsignSet.o StarNetServerConfig.o StarNetServerFrame.o StarNetServerIrcDDBSet.o \
|
|
StarNetServerLogRedirect.o StarNetServerMiscellaneousSet.o StarNetServerPreferences.o StarNetServerThread.o \
|
|
StarNetServerThreadHelper.o
|
|
|
|
all: starnetserver
|
|
|
|
starnetserver: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a ../ircDDB/IRCDDB.a $(LDFLAGS) $(LIBS) -o starnetserver
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -I../ircDDB -c -o $@ $<
|
|
|
|
clean:
|
|
$(RM) starnetserver *.o *.d *.bak *~
|
|
|