mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
19 lines
596 B
Plaintext
19 lines
596 B
Plaintext
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) $(GUILIBS) -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 *~
|
|
|