2018-05-15 20:32:38 +02:00
|
|
|
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 $@ $<
|
|
|
|
|
|
2018-05-15 22:19:47 +02:00
|
|
|
install:
|
|
|
|
|
install -g bin -o root -m 0775 timercontrol $(BINDIR)
|
|
|
|
|
|
2018-05-15 20:32:38 +02:00
|
|
|
clean:
|
|
|
|
|
$(RM) timercontrol *.o *.d *.bak *~
|
|
|
|
|
|