mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-05 06:15:29 +00:00
Add GUI makefiles for the other GUI capable programs.
This commit is contained in:
parent
5a5bfc9e89
commit
dd2760b434
5 changed files with 91 additions and 21 deletions
41
MakefileGUI
41
MakefileGUI
|
|
@ -12,10 +12,10 @@ export GUILIBS := $(shell wx-config --libs adv,core,base)
|
|||
export LIBS := $(shell wx-config --libs base)
|
||||
export LDFLAGS :=
|
||||
|
||||
all: ircDDBGateway/ircddbgatewayd ircDDBGatewayConfig/ircddbgatewayconfig APRSTransmit/aprstransmitd RemoteControl/remotecontrold \
|
||||
StarNetServer/starnetserverd TextTransmit/texttransmitd TimerControl/timercontrold TimeServer/timeserverd VoiceTransmit/voicetransmitd
|
||||
all: ircDDBGateway/ircddbgateway ircDDBGatewayConfig/ircddbgatewayconfig APRSTransmit/aprstransmitd RemoteControl/remotecontrol \
|
||||
StarNetServer/starnetserver TextTransmit/texttransmitd TimerControl/timercontrol TimeServer/timeserver VoiceTransmit/voicetransmitd
|
||||
|
||||
ircDDBGateway/ircddbgatewayd: GUICommon/GUICommon.a Common/Common.a ircDDB/IRCDDB.a
|
||||
ircDDBGateway/ircddbgateway: GUICommon/GUICommon.a Common/Common.a ircDDB/IRCDDB.a
|
||||
make -C ircDDBGateway -f MakefileGUI
|
||||
|
||||
ircDDBGatewayConfig/ircddbgatewayconfig: GUICommon/GUICommon.a Common/Common.a
|
||||
|
|
@ -24,20 +24,20 @@ ircDDBGatewayConfig/ircddbgatewayconfig: GUICommon/GUICommon.a Common/Common.a
|
|||
APRSTransmit/aprstransmitd: Common/Common.a
|
||||
make -C APRSTransmit
|
||||
|
||||
RemoteControl/remotecontrold: Common/Common.a
|
||||
make -C RemoteControl
|
||||
RemoteControl/remotecontrol: Common/Common.a
|
||||
make -C RemoteControl -f MakefileGUI
|
||||
|
||||
StarNetServer/starnetserverd: Common/Common.a ircDDB/IRCDDB.a
|
||||
make -C StarNetServer
|
||||
StarNetServer/starnetserver: Common/Common.a ircDDB/IRCDDB.a
|
||||
make -C StarNetServer -f MakefileGUI
|
||||
|
||||
TextTransmit/texttransmitd: Common/Common.a
|
||||
make -C TextTransmit
|
||||
|
||||
TimerControl/timercontrold: Common/Common.a GUICommon/GUICommon.a
|
||||
make -C TimerControl
|
||||
TimerControl/timercontrol: Common/Common.a GUICommon/GUICommon.a
|
||||
make -C TimerControl -f MakefileGUI
|
||||
|
||||
TimeServer/timeserverd: Common/Common.a GUICommon/GUICommon.a
|
||||
make -C TimeServer
|
||||
TimeServer/timeserver: Common/Common.a GUICommon/GUICommon.a
|
||||
make -C TimeServer -f MakefileGUI
|
||||
|
||||
VoiceTransmit/voicetransmitd: Common/Common.a
|
||||
make -C VoiceTransmit
|
||||
|
|
@ -55,11 +55,11 @@ install: all
|
|||
make -C Data install
|
||||
make -C APRSTransmit install
|
||||
make -C ircDDBGateway -f MakefileGUI install
|
||||
make -C RemoteControl install
|
||||
make -C StarNetServer install
|
||||
make -C RemoteControl -f MakefileGUI install
|
||||
make -C StarNetServer -f MakefileGUI install
|
||||
make -C TextTransmit install
|
||||
make -C TimerControl install
|
||||
make -C TimeServer install
|
||||
make -C TimerControl -f MakefileGUI install
|
||||
make -C TimeServer -f MakefileGUI install
|
||||
make -C VoiceTransmit install
|
||||
make -C ircDDBGatewayConfig install
|
||||
|
||||
|
|
@ -68,12 +68,11 @@ clean:
|
|||
make -C ircDDB clean
|
||||
make -C GUICommon clean
|
||||
make -C APRSTransmit clean
|
||||
make -C ircDDBGateway clean
|
||||
make -C RemoteControl clean
|
||||
make -C StarNetServer clean
|
||||
make -C ircDDBGateway -f MakefileGUI clean
|
||||
make -C RemoteControl -f MakefileGUI clean
|
||||
make -C StarNetServer -f MakefileGUI clean
|
||||
make -C TextTransmit clean
|
||||
make -C TimerControl clean
|
||||
make -C TimeServer clean
|
||||
make -C TimerControl -f MakefileGUI clean
|
||||
make -C TimeServer -f MakefileGUI clean
|
||||
make -C VoiceTransmit clean
|
||||
make -C ircDDBGatewayConfig clean
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue