mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-31 13:40:06 +01:00
15 lines
520 B
Makefile
15 lines
520 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 $@ $<
|
||
|
|
|
||
|
|
clean:
|
||
|
|
$(RM) timercontrol *.o *.d *.bak *~
|
||
|
|
|