ircDDBGateway/TimeServer/Makefile

17 lines
384 B
Makefile
Raw Normal View History

OBJECTS = TimeServerD.o TimeServerConfig.o TimeServerThread.o TimeServerThreadHelper.o
2018-05-15 20:32:38 +02:00
all: timeserverd
2018-05-15 20:32:38 +02:00
timeserverd: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o timeserverd
2018-05-15 20:32:38 +02:00
%.o: %.cpp
$(CXX) -DwxUSE_GUI=0 $(CFLAGS) -I../Common -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 timeserverd $(BINDIR)
2018-05-15 22:19:47 +02:00
2018-05-15 20:32:38 +02:00
clean:
$(RM) timeserverd *.o *.d *.bak *~
2018-05-15 20:32:38 +02:00