mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
18 lines
534 B
Plaintext
18 lines
534 B
Plaintext
OBJECTS = TimeServerApp.o TimeServerAnnouncementsSet.o TimeServerConfig.o TimeServerFrame.o TimeServerGatewaySet.o TimeServerLogRedirect.o \
|
|
TimeServerPreferences.o TimeServerThread.o TimeServerThreadHelper.o
|
|
|
|
all: timeserver
|
|
|
|
timeserver: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(GUILIBS) -o timeserver
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 timeserver $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) timeserver *.o *.d *.bak *~
|
|
|