mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
19 lines
639 B
Plaintext
19 lines
639 B
Plaintext
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) $(GUILIBS) -o starnetserver
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -I../ircDDB -c -o $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 starnetserver $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) starnetserver *.o *.d *.bak *~
|
|
|