mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
Merge pull request #55 from sq7lrx/deguify
Remove GUICommon dependency from Makefile
This commit is contained in:
commit
ffd33876f5
14
Makefile
14
Makefile
|
|
@ -23,20 +23,16 @@ ifeq ($(BUILD), debug)
|
||||||
else ifeq ($(BUILD), release)
|
else ifeq ($(BUILD), release)
|
||||||
export CFLAGS := $(CFLAGS) $(RELEASEFLAGS)
|
export CFLAGS := $(CFLAGS) $(RELEASEFLAGS)
|
||||||
endif
|
endif
|
||||||
export GUILIBS := $(shell wx-config --libs adv,core,base)
|
|
||||||
export LIBS := $(shell wx-config --libs base,net)
|
export LIBS := $(shell wx-config --libs base,net)
|
||||||
export LDFLAGS :=
|
export LDFLAGS :=
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: ircDDBGateway/ircddbgatewayd ircDDBGatewayConfig/ircddbgatewayconfig APRSTransmit/aprstransmitd RemoteControl/remotecontrold \
|
all: ircDDBGateway/ircddbgatewayd APRSTransmit/aprstransmitd RemoteControl/remotecontrold \
|
||||||
StarNetServer/starnetserverd TextTransmit/texttransmitd TimerControl/timercontrold TimeServer/timeserverd VoiceTransmit/voicetransmitd
|
StarNetServer/starnetserverd TextTransmit/texttransmitd TimerControl/timercontrold TimeServer/timeserverd VoiceTransmit/voicetransmitd
|
||||||
|
|
||||||
ircDDBGateway/ircddbgatewayd: Common/Common.a ircDDB/IRCDDB.a force
|
ircDDBGateway/ircddbgatewayd: Common/Common.a ircDDB/IRCDDB.a force
|
||||||
$(MAKE) -C ircDDBGateway
|
$(MAKE) -C ircDDBGateway
|
||||||
|
|
||||||
ircDDBGatewayConfig/ircddbgatewayconfig: GUICommon/GUICommon.a Common/Common.a force
|
|
||||||
$(MAKE) -C ircDDBGatewayConfig
|
|
||||||
|
|
||||||
APRSTransmit/aprstransmitd: Common/Common.a force
|
APRSTransmit/aprstransmitd: Common/Common.a force
|
||||||
$(MAKE) -C APRSTransmit
|
$(MAKE) -C APRSTransmit
|
||||||
|
|
||||||
|
|
@ -49,18 +45,15 @@ StarNetServer/starnetserverd: Common/Common.a ircDDB/IRCDDB.a force
|
||||||
TextTransmit/texttransmitd: Common/Common.a force
|
TextTransmit/texttransmitd: Common/Common.a force
|
||||||
$(MAKE) -C TextTransmit
|
$(MAKE) -C TextTransmit
|
||||||
|
|
||||||
TimerControl/timercontrold: Common/Common.a GUICommon/GUICommon.a force
|
TimerControl/timercontrold: Common/Common.a force
|
||||||
$(MAKE) -C TimerControl
|
$(MAKE) -C TimerControl
|
||||||
|
|
||||||
TimeServer/timeserverd: Common/Common.a GUICommon/GUICommon.a force
|
TimeServer/timeserverd: Common/Common.a force
|
||||||
$(MAKE) -C TimeServer
|
$(MAKE) -C TimeServer
|
||||||
|
|
||||||
VoiceTransmit/voicetransmitd: Common/Common.a force
|
VoiceTransmit/voicetransmitd: Common/Common.a force
|
||||||
$(MAKE) -C VoiceTransmit
|
$(MAKE) -C VoiceTransmit
|
||||||
|
|
||||||
GUICommon/GUICommon.a: force
|
|
||||||
$(MAKE) -C GUICommon
|
|
||||||
|
|
||||||
Common/Common.a: force
|
Common/Common.a: force
|
||||||
$(MAKE) -C Common
|
$(MAKE) -C Common
|
||||||
|
|
||||||
|
|
@ -100,7 +93,6 @@ endif
|
||||||
clean:
|
clean:
|
||||||
$(MAKE) -C Common clean
|
$(MAKE) -C Common clean
|
||||||
$(MAKE) -C ircDDB clean
|
$(MAKE) -C ircDDB clean
|
||||||
$(MAKE) -C GUICommon clean
|
|
||||||
$(MAKE) -C APRSTransmit clean
|
$(MAKE) -C APRSTransmit clean
|
||||||
$(MAKE) -C ircDDBGateway clean
|
$(MAKE) -C ircDDBGateway clean
|
||||||
$(MAKE) -C RemoteControl clean
|
$(MAKE) -C RemoteControl clean
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue