mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-02 22:49:59 +01:00
18 lines
586 B
Makefile
18 lines
586 B
Makefile
OBJECTS = TimerControlApp.o TimerControlConfig.o TimerControlFrame.o TimerControlItemFile.o TimerControlPreferences.o \
|
|
TimerControlRemoteControlHandler.o TimerControlRemoteSet.o TimerControlRepeaterPanel.o TimerControlThread.o TimerControlThreadHelper.o
|
|
|
|
all: timercontrol
|
|
|
|
timercontrol: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(LIBS) -o timercontrol
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 timercontrol $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) timercontrol *.o *.d *.bak *~
|
|
|