ircDDBGateway/StarNetServer/Makefile

17 lines
445 B
Makefile
Raw Normal View History

OBJECTS = StarNetServerAppD.o StarNetServerConfig.o StarNetServerThread.o StarNetServerThreadHelper.o
2018-05-15 20:32:38 +02:00
all: starnetserverd
2018-05-15 20:32:38 +02:00
starnetserverd: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a ../ircDDB/IRCDDB.a $(LDFLAGS) $(LIBS) -o starnetserverd
2018-05-15 20:32:38 +02:00
%.o: %.cpp
$(CXX) -DwxUSE_GUI=0 $(CFLAGS) -I../Common -I../ircDDB -c -o $@ $<
2018-05-15 20:32:38 +02:00
2018-05-15 22:19:47 +02:00
install:
install -g bin -o root -m 0775 starnetserverd $(BINDIR)
2018-05-15 22:19:47 +02:00
2018-05-15 20:32:38 +02:00
clean:
$(RM) starnetserverd *.o *.d *.bak *~
2018-05-15 20:32:38 +02:00