Add GUI makefiles for the other GUI capable programs.

This commit is contained in:
Jonathan Naylor 2018-09-19 21:05:28 +01:00
parent 5a5bfc9e89
commit dd2760b434
5 changed files with 91 additions and 21 deletions

18
RemoteControl/MakefileGUI Normal file
View file

@ -0,0 +1,18 @@
OBJECTS = RemoteControlApp.o RemoteControlCallsignData.o RemoteControlConfig.o RemoteControlFrame.o RemoteControlLinkData.o \
RemoteControlPreferences.o RemoteControlRemoteControlHandler.o RemoteControlRemoteSet.o RemoteControlRepeaterData.o \
RemoteControlRepeaterPanel.o RemoteControlStarNetGroup.o RemoteControlStarNetPanel.o RemoteControlStarNetUser.o
all: remotecontrol
remotecontrol: $(OBJECTS)
$(CXX) $(OBJECTS) ../GUICommon/GUICommon.a ../Common/Common.a $(LDFLAGS) $(GUILIBS) -o remotecontrol
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -I../GUICommon -c -o $@ $<
install:
install -g bin -o root -m 0775 remotecontrol $(BINDIR)
clean:
$(RM) remotecontrol *.o *.d *.bak *~