diff --git a/ircDDBGateway/APRSTransmit/Makefile b/ircDDBGateway/APRSTransmit/Makefile deleted file mode 100644 index 636dac6..0000000 --- a/ircDDBGateway/APRSTransmit/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -all: aprstransmit aprstransmitd - -CFLAGS := -I../Common $(CFLAGS) - -aprstransmit: APRSTransmitApp.o APRSTransmit.o APRSParser.o - $(CC) $(LDFLAGS) -o aprstransmit APRSTransmitApp.o APRSTransmit.o APRSParser.o ../Common/Common.a $(LIBS) - -aprstransmitd: APRSTransmitAppD.o APRSTransmit.o APRSParser.o - $(CC) $(LDFLAGS) -o aprstransmitd APRSTransmitAppD.o APRSTransmit.o APRSParser.o ../Common/Common.a $(LIBS) - -APRSTransmitApp.o: APRSTransmitApp.cpp ../Common/Common.a - $(CC) $(CFLAGS) -c APRSTransmitApp.cpp - -APRSTransmitAppD.o: APRSTransmitAppD.cpp APRSTransmitAppD.h ../Common/APRSWriterThread.h - $(CC) $(CFLAGS) -c APRSTransmitAppD.cpp - -APRSTransmit.o: APRSTransmit.cpp APRSTransmit.h APRSParser.h ../Common/UDPReaderWriter.h ../Common/HeaderData.h ../Common/AMBEData.h ../Common/SlowDataEncoder.h \ - ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c APRSTransmit.cpp - -APRSParser.o: APRSParser.cpp APRSParser.h - $(CC) $(CFLAGS) -c APRSParser.cpp - -install: aprstransmit aprstransmitd - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 aprstransmit $(BINDIR) - install -g bin -o root -m 0775 aprstransmitd $(BINDIR) - -clean: - rm -f core aprstransmit aprstransmitd *.o *~ *.bak diff --git a/ircDDBGateway/Common/Makefile b/ircDDBGateway/Common/Makefile deleted file mode 100644 index 7e1c004..0000000 --- a/ircDDBGateway/Common/Makefile +++ /dev/null @@ -1,239 +0,0 @@ -all: Common.a - -CFLAGS := -I../ircDDB -I../Common $(CFLAGS) - -Common.a: AMBEData.o AnnouncementUnit.o APRSCollector.o APRSWriter.o APRSWriterThread.o AudioUnit.o CacheManager.o CallsignList.o CallsignServer.o \ - CCITTChecksum.o CCSData.o CCSHandler.o CCSProtocolHandler.o ConnectData.o DCSHandler.o DCSProtocolHandler.o DCSProtocolHandlerPool.o DDData.o \ - DDHandler.o DExtraHandler.o DExtraProtocolHandler.o DExtraProtocolHandlerPool.o DPlusAuthenticator.o DPlusHandler.o DPlusProtocolHandler.o \ - DPlusProtocolHandlerPool.o DRATSServer.o DTMF.o DummyRepeaterProtocolHandler.o DVTOOLFileReader.o EchoUnit.o G2Handler.o G2ProtocolHandler.o \ - GatewayCache.o HBRepeaterProtocolHandler.o HeaderData.o HeaderLogger.o HeardData.o HostFile.o IcomRepeaterProtocolHandler.o IRCDDBGatewayConfig.o \ - LogEvent.o Logger.o PollData.o RemoteHandler.o RemoteLinkData.o RemoteProtocolHandler.o RemoteRepeaterData.o RemoteStarNetGroup.o RemoteStarNetUser.o \ - RepeaterCache.o RepeaterHandler.o SHA256.o SlowDataEncoder.o StarNetHandler.o StatusData.o TCPReaderWriterClient.o TCPReaderWriterServer.o \ - TextCollector.o TextData.o Timer.o UDPReaderWriter.o UserCache.o Utils.o VersionUnit.o - $(AR) rcs Common.a AMBEData.o AnnouncementUnit.o APRSCollector.o APRSWriter.o APRSWriterThread.o AudioUnit.o CacheManager.o CallsignList.o \ - CallsignServer.o CCITTChecksum.o CCSData.o CCSHandler.o CCSProtocolHandler.o ConnectData.o DCSHandler.o DCSProtocolHandler.o DCSProtocolHandlerPool.o \ - DDData.o DDHandler.o DExtraHandler.o DExtraProtocolHandler.o DExtraProtocolHandlerPool.o DPlusAuthenticator.o DPlusHandler.o DPlusProtocolHandler.o \ - DPlusProtocolHandlerPool.o DRATSServer.o DTMF.o DummyRepeaterProtocolHandler.o DVTOOLFileReader.o EchoUnit.o G2Handler.o G2ProtocolHandler.o \ - GatewayCache.o HBRepeaterProtocolHandler.o HeaderData.o HeaderLogger.o HeardData.o HostFile.o IcomRepeaterProtocolHandler.o IRCDDBGatewayConfig.o \ - LogEvent.o Logger.o PollData.o RemoteHandler.o RemoteLinkData.o RemoteProtocolHandler.o RemoteRepeaterData.o RemoteStarNetGroup.o RemoteStarNetUser.o \ - RepeaterCache.o RepeaterHandler.o SHA256.o SlowDataEncoder.o StarNetHandler.o StatusData.o TCPReaderWriterClient.o TCPReaderWriterServer.o \ - TextCollector.o TextData.o Timer.o UDPReaderWriter.o UserCache.o Utils.o VersionUnit.o - -AMBEData.o: AMBEData.cpp AMBEData.h DStarDefines.h HeaderData.h Utils.h - $(CC) $(CFLAGS) -c AMBEData.cpp - -AnnouncementUnit.o: AnnouncementUnit.cpp AnnouncementUnit.h RepeaterCallback.h HeaderData.h AMBEData.h Timer.h DStarDefines.h Defs.h DVTOOLFileReader.h - $(CC) $(CFLAGS) -c AnnouncementUnit.cpp - -APRSWriter.o: APRSWriter.cpp APRSWriter.h AMBEData.h APRSCollector.h DStarDefines.h Defs.h Timer.h APRSWriterThread.h - $(CC) $(CFLAGS) -c APRSWriter.cpp - -APRSWriterThread.o: APRSWriterThread.cpp APRSWriterThread.h TCPReaderWriterClient.h DStarDefines.h Defs.h Utils.h RingBuffer.h - $(CC) $(CFLAGS) -c APRSWriterThread.cpp - -APRSCollector.o: APRSCollector.cpp APRSCollector.h DStarDefines.h Utils.h Defs.h - $(CC) $(CFLAGS) -c APRSCollector.cpp - -AudioUnit.o: AudioUnit.cpp AudioUnit.h RepeaterCallback.h HeaderData.h AMBEData.h Timer.h DStarDefines.h Defs.h SlowDataEncoder.h - $(CC) $(CFLAGS) -c AudioUnit.cpp - -CacheManager.o: CacheManager.cpp CacheManager.h GatewayCache.h RepeaterCache.h UserCache.h DStarDefines.h - $(CC) $(CFLAGS) -c CacheManager.cpp - -CallsignList.o: CallsignList.cpp CallsignList.h DStarDefines.h - $(CC) $(CFLAGS) -c CallsignList.cpp - -CallsignServer.o: CallsignServer.cpp CallsignServer.h TCPReaderWriterClient.h Timer.h CacheManager.h Utils.h DStarDefines.h Defs.h - $(CC) $(CFLAGS) -c CallsignServer.cpp - -CCITTChecksum.o: CCITTChecksum.cpp CCITTChecksum.h Utils.h - $(CC) $(CFLAGS) -c CCITTChecksum.cpp - -CCSData.o: CCSData.cpp CCSData.h DStarDefines.h Utils.h - $(CC) $(CFLAGS) -c CCSData.cpp - -CCSHandler.o: CCSHandler.cpp CCSHandler.h DStarDefines.h RepeaterHandler.h Utils.h CCSProtocolHandler.h ConnectData.h AMBEData.h \ - PollData.h Timer.h Defs.h HeaderLogger.h CCSCallback.h HeaderData.h CCSData.h - $(CC) $(CFLAGS) -c CCSHandler.cpp - -CCSProtocolHandler.o: CCSProtocolHandler.cpp CCSProtocolHandler.h AMBEData.h UDPReaderWriter.h DStarDefines.h Timer.h Utils.h ConnectData.h PollData.h \ - CCSData.h HeardData.h - $(CC) $(CFLAGS) -c CCSProtocolHandler.cpp - -ConnectData.o: ConnectData.cpp ConnectData.h DStarDefines.h Version.h Utils.h Defs.h - $(CC) $(CFLAGS) -c ConnectData.cpp - -DCSHandler.o: DCSHandler.cpp DCSHandler.h DStarDefines.h RepeaterHandler.h Utils.h DCSProtocolHandlerPool.h DCSProtocolHandler.h ConnectData.h AMBEData.h \ - PollData.h Timer.h Defs.h HeaderLogger.h ReflectorCallback.h HeaderData.h CallsignList.h - $(CC) $(CFLAGS) -c DCSHandler.cpp - -DCSProtocolHandler.o: DCSProtocolHandler.cpp DCSProtocolHandler.h AMBEData.h UDPReaderWriter.h DStarDefines.h Timer.h Utils.h ConnectData.h PollData.h - $(CC) $(CFLAGS) -c DCSProtocolHandler.cpp - -DCSProtocolHandlerPool.o: DCSProtocolHandlerPool.cpp DCSProtocolHandlerPool.h DCSProtocolHandler.h - $(CC) $(CFLAGS) -c DCSProtocolHandlerPool.cpp - -DDData.o: DDData.cpp DDData.h DStarDefines.h Utils.h HeaderData.h - $(CC) $(CFLAGS) -c DDData.cpp - -DDHandler.o: DDHandler.cpp DDHandler.h DDData.h RepeaterHandler.h HeaderLogger.h Defs.h Timer.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c DDHandler.cpp - -DExtraHandler.o: DExtraHandler.cpp DExtraHandler.h DStarDefines.h RepeaterHandler.h Utils.h DExtraProtocolHandlerPool.h DExtraProtocolHandler.h \ - ConnectData.h HeaderData.h AMBEData.h PollData.h Timer.h Defs.h HeaderLogger.h ReflectorCallback.h CallsignList.h - $(CC) $(CFLAGS) -c DExtraHandler.cpp - -DExtraProtocolHandler.o: DExtraProtocolHandler.cpp DExtraProtocolHandler.h HeaderData.h AMBEData.h UDPReaderWriter.h DStarDefines.h Timer.h Utils.h \ - ConnectData.h PollData.h - $(CC) $(CFLAGS) -c DExtraProtocolHandler.cpp - -DExtraProtocolHandlerPool.o: DExtraProtocolHandlerPool.cpp DExtraProtocolHandlerPool.h DExtraProtocolHandler.h - $(CC) $(CFLAGS) -c DExtraProtocolHandlerPool.cpp - -DPlusAuthenticator.o: DPlusAuthenticator.cpp DPlusAuthenticator.h UDPReaderWriter.h TCPReaderWriterClient.h Timer.h CacheManager.h Utils.h DStarDefines.h \ - Defs.h - $(CC) $(CFLAGS) -c DPlusAuthenticator.cpp - -DPlusHandler.o: DPlusHandler.cpp DPlusHandler.h DStarDefines.h RepeaterHandler.h Utils.h DPlusProtocolHandlerPool.h DPlusProtocolHandler.h ConnectData.h \ - HeaderData.h AMBEData.h PollData.h Timer.h Defs.h HeaderLogger.h DPlusAuthenticator.h CacheManager.h ReflectorCallback.h CallsignList.h - $(CC) $(CFLAGS) -c DPlusHandler.cpp - -DPlusProtocolHandler.o: DPlusProtocolHandler.cpp DPlusProtocolHandler.h HeaderData.h AMBEData.h UDPReaderWriter.h DStarDefines.h Timer.h Utils.h \ - ConnectData.h PollData.h - $(CC) $(CFLAGS) -c DPlusProtocolHandler.cpp - -DPlusProtocolHandlerPool.o: DPlusProtocolHandlerPool.cpp DPlusProtocolHandlerPool.h DPlusProtocolHandler.h - $(CC) $(CFLAGS) -c DPlusProtocolHandlerPool.cpp - -DRATSServer.o: DRATSServer.cpp DRATSServer.h TCPReaderWriterServer.h RepeaterCallback.h HeaderData.h AMBEData.h Utils.h DStarDefines.h Defs.h - $(CC) $(CFLAGS) -c DRATSServer.cpp - -DTMF.o: DTMF.cpp DTMF.h - $(CC) $(CFLAGS) -c DTMF.cpp - -DummyRepeaterProtocolHandler.o: DummyRepeaterProtocolHandler.cpp DummyRepeaterProtocolHandler.h RepeaterProtocolHandler.h HeaderData.h AMBEData.h \ - DStarDefines.h Utils.h TextData.h StatusData.h DDData.h HeardData.h PollData.h - $(CC) $(CFLAGS) -c DummyRepeaterProtocolHandler.cpp - -DVTOOLFileReader.o: DVTOOLFileReader.cpp DVTOOLFileReader.h HeaderData.h AMBEData.h DStarDefines.h - $(CC) $(CFLAGS) -c DVTOOLFileReader.cpp - -EchoUnit.o: EchoUnit.cpp EchoUnit.h RepeaterCallback.h HeaderData.h AMBEData.h Timer.h DStarDefines.h Defs.h - $(CC) $(CFLAGS) -c EchoUnit.cpp - -G2Handler.o: G2Handler.cpp G2Handler.h G2ProtocolHandler.h DStarDefines.h HeaderData.h AMBEData.h Timer.h RepeaterHandler.h Utils.h Defs.h HeaderLogger.h \ - StarNetHandler.h - $(CC) $(CFLAGS) -c G2Handler.cpp - -G2ProtocolHandler.o: G2ProtocolHandler.cpp G2ProtocolHandler.h DStarDefines.h Utils.h UDPReaderWriter.h HeaderData.h AMBEData.h - $(CC) $(CFLAGS) -c G2ProtocolHandler.cpp - -GatewayCache.o: GatewayCache.cpp GatewayCache.h Defs.h DStarDefines.h - $(CC) $(CFLAGS) -c GatewayCache.cpp - -HBRepeaterProtocolHandler.o: HBRepeaterProtocolHandler.cpp HBRepeaterProtocolHandler.h RepeaterProtocolHandler.h HeaderData.h AMBEData.h \ - UDPReaderWriter.h DStarDefines.h CCITTChecksum.h Utils.h TextData.h StatusData.h DDData.h HeardData.h PollData.h - $(CC) $(CFLAGS) -c HBRepeaterProtocolHandler.cpp - -HeaderData.o: HeaderData.cpp HeaderData.h CCITTChecksum.h DStarDefines.h Utils.h - $(CC) $(CFLAGS) -c HeaderData.cpp - -HeaderLogger.o: HeaderLogger.cpp HeaderLogger.h HeaderData.h DDData.h Defs.h - $(CC) $(CFLAGS) -c HeaderLogger.cpp - -HeardData.o: HeardData.cpp HeardData.h HeaderData.h DStarDefines.h - $(CC) $(CFLAGS) -c HeardData.cpp - -HostFile.o: HostFile.cpp HostFile.h DStarDefines.h - $(CC) $(CFLAGS) -c HostFile.cpp - -IcomRepeaterProtocolHandler.o: IcomRepeaterProtocolHandler.cpp IcomRepeaterProtocolHandler.h RepeaterProtocolHandler.h HeaderData.h AMBEData.h \ - UDPReaderWriter.h DStarDefines.h CCITTChecksum.h Utils.h TextData.h RingBuffer.h Timer.h StatusData.h DDData.h \ - HeardData.h PollData.h - $(CC) $(CFLAGS) -c IcomRepeaterProtocolHandler.cpp - -IRCDDBGatewayConfig.o: IRCDDBGatewayConfig.cpp IRCDDBGatewayConfig.h Defs.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfig.cpp - -LogEvent.o: LogEvent.cpp LogEvent.h - $(CC) $(CFLAGS) -c LogEvent.cpp - -Logger.o: Logger.cpp Logger.h - $(CC) $(CFLAGS) -c Logger.cpp - -PollData.o: PollData.cpp PollData.h DStarDefines.h Defs.h Utils.h - $(CC) $(CFLAGS) -c PollData.cpp - -RemoteHandler.o: RemoteHandler.cpp RemoteHandler.h RemoteProtocolHandler.h Timer.h RepeaterHandler.h StarNetHandler.h DExtraHandler.h DPlusHandler.h \ - DCSHandler.h DStarDefines.h StatusData.h - $(CC) $(CFLAGS) -c RemoteHandler.cpp - -RemoteLinkData.o: RemoteLinkData.cpp RemoteLinkData.h Defs.h - $(CC) $(CFLAGS) -c RemoteLinkData.cpp - -RemoteProtocolHandler.o: RemoteProtocolHandler.cpp RemoteProtocolHandler.h RemoteRepeaterData.h RemoteStarNetGroup.h UDPReaderWriter.h DStarDefines.h \ - SHA256.h Utils.h Defs.h - $(CC) $(CFLAGS) -c RemoteProtocolHandler.cpp - -RemoteRepeaterData.o: RemoteRepeaterData.cpp RemoteRepeaterData.h RemoteLinkData.h - - $(CC) $(CFLAGS) -c RemoteRepeaterData.cpp - -RemoteStarNetGroup.o: RemoteStarNetGroup.cpp RemoteStarNetGroup.h RemoteStarNetUser.h - $(CC) $(CFLAGS) -c RemoteStarNetGroup.cpp - -RemoteStarNetUser.o: RemoteStarNetUser.cpp RemoteStarNetUser.h - $(CC) $(CFLAGS) -c RemoteStarNetUser.cpp - -RepeaterCache.o: RepeaterCache.cpp RepeaterCache.h - $(CC) $(CFLAGS) -c RepeaterCache.cpp - -RepeaterHandler.o: RepeaterHandler.cpp RepeaterHandler.h RepeaterProtocolHandler.h DCSProtocolHandler.h DExtraProtocolHandler.h \ - DPlusProtocolHandler.h G2ProtocolHandler.h CacheManager.h Timer.h DExtraHandler.h DPlusHandler.h DStarDefines.h HeaderData.h \ - AMBEData.h Utils.h Defs.h HeaderLogger.h APRSWriter.h TextCollector.h EchoUnit.h RepeaterCallback.h AudioUnit.h DRATSServer.h \ - StarNetHandler.h ReflectorCallback.h DDData.h DDHandler.h RemoteRepeaterData.h StatusData.h DTMF.h HeardData.h VersionUnit.h \ - PollData.h DCSHandler.h CCSHandler.h CCSCallback.h CallsignList.h AnnouncementUnit.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c RepeaterHandler.cpp - -SHA256.o: SHA256.cpp SHA256.h - $(CC) $(CFLAGS) -c SHA256.cpp - -SlowDataEncoder.o: SlowDataEncoder.cpp SlowDataEncoder.h HeaderData.h CCITTChecksum.h DStarDefines.h - $(CC) $(CFLAGS) -c SlowDataEncoder.cpp - -StarNetHandler.o: StarNetHandler.cpp StarNetHandler.h TextCollector.h SlowDataEncoder.h G2ProtocolHandler.h CacheManager.h HeaderData.h AMBEData.h \ - Timer.h DStarDefines.h RepeaterHandler.h RepeaterCallback.h RemoteStarNetGroup.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c StarNetHandler.cpp - -StatusData.o: StatusData.cpp StatusData.h DStarDefines.h Utils.h - $(CC) $(CFLAGS) -c StatusData.cpp - -TCPReaderWriterClient.o: TCPReaderWriterClient.cpp TCPReaderWriterClient.h UDPReaderWriter.h - $(CC) $(CFLAGS) -c TCPReaderWriterClient.cpp - -TCPReaderWriterServer.o: TCPReaderWriterServer.cpp TCPReaderWriterServer.h TCPReaderWriterClient.h - $(CC) $(CFLAGS) -c TCPReaderWriterServer.cpp - -TextCollector.o: TextCollector.cpp TextCollector.h AMBEData.h DStarDefines.h Defs.h Utils.h - $(CC) $(CFLAGS) -c TextCollector.cpp - -TextData.o: TextData.cpp TextData.h DStarDefines.h Utils.h Defs.h - $(CC) $(CFLAGS) -c TextData.cpp - -Timer.o: Timer.cpp Timer.h - $(CC) $(CFLAGS) -c Timer.cpp - -UDPReaderWriter.o: UDPReaderWriter.cpp UDPReaderWriter.h - $(CC) $(CFLAGS) -c UDPReaderWriter.cpp - -UserCache.o: UserCache.cpp UserCache.h - $(CC) $(CFLAGS) -c UserCache.cpp - -Utils.o: Utils.cpp Utils.h - $(CC) $(CFLAGS) -c Utils.cpp - -VersionUnit.o: VersionUnit.cpp VersionUnit.h RepeaterCallback.h HeaderData.h AMBEData.h Timer.h DStarDefines.h Defs.h SlowDataEncoder.h Version.h - $(CC) $(CFLAGS) -c VersionUnit.cpp - -clean: - rm -f core Common.a *.o *~ *.bak diff --git a/ircDDBGateway/Data/Makefile b/ircDDBGateway/Data/Makefile deleted file mode 100644 index 4350c30..0000000 --- a/ircDDBGateway/Data/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -install: - install -d -g bin -o root -m 0775 $(DATADIR) - install -g bin -o root -m 0664 CCS_Hosts.txt $(DATADIR) - install -g bin -o root -m 0664 DCS_Hosts.txt $(DATADIR) - install -g bin -o root -m 0664 DExtra_Hosts.txt $(DATADIR) - install -g bin -o root -m 0664 DPlus_Hosts.txt $(DATADIR) - install -g bin -o root -m 0664 TIME_de_DE.ambe $(DATADIR) - install -g bin -o root -m 0664 TIME_de_DE.indx $(DATADIR) - install -g bin -o root -m 0664 TIME_en_GB.ambe $(DATADIR) - install -g bin -o root -m 0664 TIME_en_GB.indx $(DATADIR) - install -g bin -o root -m 0664 TIME_en_US.ambe $(DATADIR) - install -g bin -o root -m 0664 TIME_en_US.indx $(DATADIR) - install -g bin -o root -m 0664 TIME_fr_FR.ambe $(DATADIR) - install -g bin -o root -m 0664 TIME_fr_FR.indx $(DATADIR) - install -g bin -o root -m 0664 TIME_se_SE.ambe $(DATADIR) - install -g bin -o root -m 0664 TIME_se_SE.indx $(DATADIR) - install -g bin -o root -m 0664 de_DE.ambe $(DATADIR) - install -g bin -o root -m 0664 de_DE.indx $(DATADIR) - install -g bin -o root -m 0664 dk_DK.ambe $(DATADIR) - install -g bin -o root -m 0664 dk_DK.indx $(DATADIR) - install -g bin -o root -m 0664 en_GB.ambe $(DATADIR) - install -g bin -o root -m 0664 en_GB.indx $(DATADIR) - install -g bin -o root -m 0664 en_US.ambe $(DATADIR) - install -g bin -o root -m 0664 en_US.indx $(DATADIR) - install -g bin -o root -m 0664 es_ES.ambe $(DATADIR) - install -g bin -o root -m 0664 es_ES.indx $(DATADIR) - install -g bin -o root -m 0664 fr_FR.ambe $(DATADIR) - install -g bin -o root -m 0664 fr_FR.indx $(DATADIR) - install -g bin -o root -m 0664 it_IT.ambe $(DATADIR) - install -g bin -o root -m 0664 it_IT.indx $(DATADIR) - install -g bin -o root -m 0664 no_NO.ambe $(DATADIR) - install -g bin -o root -m 0664 no_NO.indx $(DATADIR) - install -g bin -o root -m 0664 pl_PL.ambe $(DATADIR) - install -g bin -o root -m 0664 pl_PL.indx $(DATADIR) - install -g bin -o root -m 0664 se_SE.ambe $(DATADIR) - install -g bin -o root -m 0664 se_SE.indx $(DATADIR) diff --git a/ircDDBGateway/GUICommon/Makefile b/ircDDBGateway/GUICommon/Makefile deleted file mode 100644 index 7b0bf9d..0000000 --- a/ircDDBGateway/GUICommon/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -all: GUICommon.a - -CFLAGS := -I../Common $(CFLAGS) - -GUICommon.a: AddressTextCtrl.o CallsignTextCtrl.o DCSSet.o DescriptionTextCtrl.o DExtraSet.o DPlusSet.o DPRSSet.o PortTextCtrl.o RemoteSet.o RepeaterDataSet.o \ - RepeaterInfoSet.o RestrictedTextCtrl.o StarNetSet.o - $(AR) rcs GUICommon.a AddressTextCtrl.o CallsignTextCtrl.o DCSSet.o DescriptionTextCtrl.o DExtraSet.o DPlusSet.o DPRSSet.o PortTextCtrl.o RemoteSet.o \ - RepeaterDataSet.o RepeaterInfoSet.o RestrictedTextCtrl.o StarNetSet.o - -AddressTextCtrl.o: AddressTextCtrl.cpp AddressTextCtrl.h RestrictedTextCtrl.h - $(CC) $(CFLAGS) -c AddressTextCtrl.cpp - -CallsignTextCtrl.o: CallsignTextCtrl.cpp CallsignTextCtrl.h RestrictedTextCtrl.h - $(CC) $(CFLAGS) -c CallsignTextCtrl.cpp - -DescriptionTextCtrl.o: DescriptionTextCtrl.cpp DescriptionTextCtrl.h RestrictedTextCtrl.h - $(CC) $(CFLAGS) -c DescriptionTextCtrl.cpp - -DCSSet.o: DCSSet.cpp DCSSet.h ../Common/HostFile.h ../Common/Defs.h - $(CC) $(CFLAGS) -c DCSSet.cpp - -DExtraSet.o: DExtraSet.cpp DExtraSet.h - $(CC) $(CFLAGS) -c DExtraSet.cpp - -DPlusSet.o: DPlusSet.cpp DPlusSet.h ../Common/Defs.h CallsignTextCtrl.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c DPlusSet.cpp - -DPRSSet.o: DPRSSet.cpp DPRSSet.h PortTextCtrl.h - $(CC) $(CFLAGS) -c DPRSSet.cpp - -PortTextCtrl.o: PortTextCtrl.cpp PortTextCtrl.h RestrictedTextCtrl.h - $(CC) $(CFLAGS) -c PortTextCtrl.cpp - -RemoteSet.o: RemoteSet.cpp RemoteSet.h PortTextCtrl.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c RemoteSet.cpp - -RepeaterDataSet.o: RepeaterDataSet.cpp RepeaterDataSet.h ../Common/Defs.h ../Common/DStarDefines.h AddressTextCtrl.h PortTextCtrl.h ../Common/HostFile.h - $(CC) $(CFLAGS) -c RepeaterDataSet.cpp - -RepeaterInfoSet.o: RepeaterInfoSet.cpp RepeaterInfoSet.h ../Common/Defs.h ../Common/DStarDefines.h DescriptionTextCtrl.h - $(CC) $(CFLAGS) -c RepeaterInfoSet.cpp - -RestrictedTextCtrl.o: RestrictedTextCtrl.cpp RestrictedTextCtrl.h - $(CC) $(CFLAGS) -c RestrictedTextCtrl.cpp - -StarNetSet.o: StarNetSet.cpp StarNetSet.h CallsignTextCtrl.h ../Common/DStarDefines.h ../Common/Defs.h - $(CC) $(CFLAGS) -c StarNetSet.cpp - -clean: - rm -f core GUICommon.a *.o *~ *.bak diff --git a/ircDDBGateway/RemoteControl/Makefile b/ircDDBGateway/RemoteControl/Makefile deleted file mode 100644 index 6e90f14..0000000 --- a/ircDDBGateway/RemoteControl/Makefile +++ /dev/null @@ -1,73 +0,0 @@ -all: remotecontrol remotecontrold - -CFLAGS := -I../Common -I../GUICommon $(CFLAGS) - -remotecontrol: 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 ../Common/Common.a \ - ../GUICommon/GUICommon.a - $(CC) $(LDFLAGS) -o remotecontrol 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 ../Common/Common.a ../GUICommon/GUICommon.a $(LIBS) - -remotecontrold: RemoteControlAppD.o RemoteControlCallsignData.o RemoteControlConfig.o RemoteControlLinkData.o RemoteControlRemoteControlHandler.o \ - RemoteControlRepeaterData.o RemoteControlStarNetGroup.o RemoteControlStarNetUser.o ../Common/Common.a - $(CC) $(LDFLAGS) -o remotecontrold RemoteControlAppD.o RemoteControlCallsignData.o RemoteControlConfig.o RemoteControlLinkData.o \ - RemoteControlRemoteControlHandler.o RemoteControlRepeaterData.o RemoteControlStarNetGroup.o RemoteControlStarNetUser.o ../Common/Common.a $(LIBS) - -RemoteControlApp.o: RemoteControlApp.cpp RemoteControlApp.h RemoteControlFrame.h RemoteControlConfig.h RemoteControlDefs.h ../Common/Version.h - $(CC) $(CFLAGS) -c RemoteControlApp.cpp - -RemoteControlAppD.o: RemoteControlAppD.cpp RemoteControlConfig.h RemoteControlRemoteControlHandler.h RemoteControlDefs.h ../Common/SHA256.h ../Common/Defs.h \ - ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c RemoteControlAppD.cpp - -RemoteControlCallsignData.o: RemoteControlCallsignData.cpp RemoteControlCallsignData.h - $(CC) $(CFLAGS) -c RemoteControlCallsignData.cpp - -RemoteControlConfig.o: RemoteControlConfig.cpp RemoteControlConfig.h - $(CC) $(CFLAGS) -c RemoteControlConfig.cpp - -RemoteControlFrame.o: RemoteControlFrame.cpp RemoteControlFrame.h RemoteControlRemoteControlHandler.h RemoteControlRepeaterPanel.h \ - RemoteControlStarNetPanel.h RemoteControlPreferences.h RemoteControlApp.h RemoteControlDefs.h ../Common/Defs.h ../Common/Version.h \ - ../Common/SHA256.h - $(CC) $(CFLAGS) -c RemoteControlFrame.cpp - -RemoteControlLinkData.o: RemoteControlLinkData.cpp RemoteControlLinkData.h ../Common/Defs.h - $(CC) $(CFLAGS) -c RemoteControlLinkData.cpp - -RemoteControlPreferences.o: RemoteControlPreferences.cpp RemoteControlPreferences.h RemoteControlRemoteSet.h RemoteControlDefs.h - $(CC) $(CFLAGS) -c RemoteControlPreferences.cpp - -RemoteControlRemoteControlHandler.o: RemoteControlRemoteControlHandler.cpp RemoteControlRemoteControlHandler.h RemoteControlCallsignData.h \ - RemoteControlRepeaterData.h RemoteControlStarNetGroup.h ../Common/UDPReaderWriter.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c RemoteControlRemoteControlHandler.cpp - -RemoteControlRemoteSet.o: RemoteControlRemoteSet.cpp RemoteControlRemoteSet.h ../GUICommon/PortTextCtrl.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c RemoteControlRemoteSet.cpp - -RemoteControlRepeaterData.o: RemoteControlRepeaterData.cpp RemoteControlRepeaterData.h RemoteControlLinkData.h - $(CC) $(CFLAGS) -c RemoteControlRepeaterData.cpp - -RemoteControlRepeaterPanel.o: RemoteControlRepeaterPanel.cpp RemoteControlRepeaterPanel.h RemoteControlApp.h RemoteControlRepeaterData.h \ - ../Common/DStarDefines.h ../Common/HostFile.h - $(CC) $(CFLAGS) -c RemoteControlRepeaterPanel.cpp - -RemoteControlStarNetGroup.o: RemoteControlStarNetGroup.cpp RemoteControlStarNetGroup.h RemoteControlStarNetUser.h - $(CC) $(CFLAGS) -c RemoteControlStarNetGroup.cpp - -RemoteControlStarNetPanel.o: RemoteControlStarNetPanel.cpp RemoteControlStarNetPanel.h RemoteControlApp.h RemoteControlStarNetGroup.h - $(CC) $(CFLAGS) -c RemoteControlStarNetPanel.cpp - -RemoteControlStarNetUser.o: RemoteControlStarNetUser.cpp RemoteControlStarNetUser.h - $(CC) $(CFLAGS) -c RemoteControlStarNetUser.cpp - -install: remotecontrol remotecontrold - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 remotecontrol $(BINDIR) - install -g bin -o root -m 0775 remotecontrold $(BINDIR) - -clean: - rm -f core remotecontrol remotecontrold *.o *~ *.bak - diff --git a/ircDDBGateway/StarNetServer/Makefile b/ircDDBGateway/StarNetServer/Makefile deleted file mode 100644 index a56e1a5..0000000 --- a/ircDDBGateway/StarNetServer/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -all: starnetserver starnetserverd - -CFLAGS := -I../ircDDB -I../Common -I../GUICommon $(CFLAGS) - -starnetserver: StarNetServerApp.o StarNetServerCallsignSet.o StarNetServerConfig.o StarNetServerFrame.o StarNetServerIrcDDBSet.o StarNetServerLogRedirect.o \ - StarNetServerMiscellaneousSet.o StarNetServerPreferences.o StarNetServerThread.o StarNetServerThreadHelper.o ../ircDDB/libircDDB.a ../Common/Common.a \ - ../GUICommon/GUICommon.a - $(CC) $(LDFLAGS) -o starnetserver StarNetServerApp.o StarNetServerCallsignSet.o StarNetServerConfig.o StarNetServerFrame.o StarNetServerIrcDDBSet.o \ - StarNetServerLogRedirect.o StarNetServerMiscellaneousSet.o StarNetServerPreferences.o StarNetServerThread.o StarNetServerThreadHelper.o \ - ../ircDDB/libircDDB.a ../Common/Common.a ../GUICommon/GUICommon.a $(LIBS) - -starnetserverd: StarNetServerAppD.o StarNetServerConfig.o StarNetServerThread.o ../ircDDB/libircDDB.a ../Common/Common.a - $(CC) $(LDFLAGS) -o starnetserverd StarNetServerAppD.o StarNetServerConfig.o StarNetServerThread.o ../ircDDB/libircDDB.a ../Common/Common.a \ - $(LIBS) - -StarNetServerApp.o: StarNetServerApp.cpp StarNetServerApp.h StarNetServerThread.h StarNetServerFrame.h StarNetServerConfig.h StarNetServerLogRedirect.h \ - StarNetServerDefs.h StarNetServerThreadHelper.h ../Common/Defs.h ../Common/Logger.h ../Common/Version.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c StarNetServerApp.cpp - -StarNetServerAppD.o: StarNetServerAppD.cpp StarNetServerAppD.h StarNetServerThread.h StarNetServerConfig.h StarNetServerDefs.h ../Common/Defs.h \ - ../Common/Logger.h ../Common/Version.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c StarNetServerAppD.cpp - -StarNetServerConfig.o: StarNetServerConfig.cpp StarNetServerConfig.h StarNetServerDefs.h ../Common/Defs.h - $(CC) $(CFLAGS) -c StarNetServerConfig.cpp - -StarNetServerFrame.o: StarNetServerFrame.cpp StarNetServerFrame.h StarNetServerPreferences.h StarNetServerApp.h ../Common/Version.h \ - ../Common/LogEvent.h ../Common/Defs.h - $(CC) $(CFLAGS) -c StarNetServerFrame.cpp - -StarNetServerCallsignSet.o: StarNetServerCallsignSet.cpp StarNetServerCallsignSet.h ../Common/DStarDefines.h ../GUICommon/CallsignTextCtrl.h \ - ../GUICommon/AddressTextCtrl.h ../Common/Defs.h - $(CC) $(CFLAGS) -c StarNetServerCallsignSet.cpp - -StarNetServerIrcDDBSet.o: StarNetServerIrcDDBSet.cpp StarNetServerIrcDDBSet.h - $(CC) $(CFLAGS) -c StarNetServerIrcDDBSet.cpp - -StarNetServerLogRedirect.o: StarNetServerLogRedirect.cpp StarNetServerLogRedirect.h StarNetServerApp.h - $(CC) $(CFLAGS) -c StarNetServerLogRedirect.cpp - -StarNetServerMiscellaneousSet.o: StarNetServerMiscellaneousSet.cpp StarNetServerMiscellaneousSet.h ../Common/Defs.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c StarNetServerMiscellaneousSet.cpp - -StarNetServerPreferences.o: StarNetServerPreferences.cpp StarNetServerPreferences.h StarNetServerMiscellaneousSet.h StarNetServerCallsignSet.h \ - StarNetServerIrcDDBSet.h ../Common/Defs.h ../GUICommon/RemoteSet.h ../GUICommon/StarNetSet.h - $(CC) $(CFLAGS) -c StarNetServerPreferences.cpp - -StarNetServerThreadHelper.o: StarNetServerThreadHelper.cpp StarNetServerThreadHelper.h StarNetServerThread.h - $(CC) $(CFLAGS) -c StarNetServerThreadHelper.cpp - -StarNetServerThread.o: StarNetServerThread.cpp StarNetServerThread.h StarNetServerApp.h ../Common/Defs.h ../Common/CacheManager.h \ - ../Common/HeaderData.h ../Common/AMBEData.h ../Common/G2ProtocolHandler.h ../Common/DStarDefines.h ../Common/Utils.h \ - ../Common/Timer.h ../Common/G2Handler.h ../Common/HeaderLogger.h ../Common/StarNetHandler.h ../Common/RemoteHandler.h \ - ../Common/DExtraProtocolHandlerPool.h ../Common/DCSProtocolHandlerPool.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c StarNetServerThread.cpp - -install: starnetserver starnetserverd - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 starnetserver $(BINDIR) - install -g bin -o root -m 0775 starnetserverd $(BINDIR) - -clean: - rm -f core starnetserver starnetserverd *.o *~ *.bak - diff --git a/ircDDBGateway/TextTransmit/Makefile b/ircDDBGateway/TextTransmit/Makefile deleted file mode 100644 index e4b20af..0000000 --- a/ircDDBGateway/TextTransmit/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -all: texttransmit - -CFLAGS := -I../Common $(CFLAGS) - -texttransmit: TextTransmit.o ../Common/Common.a - $(CC) $(LDFLAGS) -o texttransmit TextTransmit.o ../Common/Common.a $(LIBS) - -TextTransmit.o: TextTransmit.cpp TextTransmit.h ../Common/UDPReaderWriter.h ../Common/HeaderData.h ../Common/AMBEData.h ../Common/SlowDataEncoder.h \ - ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c TextTransmit.cpp - -install: texttransmit - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 texttransmit $(BINDIR) - -clean: - rm -f core texttransmit *.o *~ *.bak diff --git a/ircDDBGateway/TimeServer/Makefile b/ircDDBGateway/TimeServer/Makefile deleted file mode 100644 index 499048f..0000000 --- a/ircDDBGateway/TimeServer/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -all: timeserver timeserverd - -CFLAGS := -I../Common -I../GUICommon $(CFLAGS) - -timeserver: TimeServerAnnouncementsSet.o TimeServerApp.o TimeServerConfig.o TimeServerFrame.o TimeServerGatewaySet.o TimeServerLogRedirect.o \ - TimeServerPreferences.o TimeServerThread.o TimeServerThreadHelper.o ../Common/Common.a ../GUICommon/GUICommon.a - $(CC) $(LDFLAGS) -o timeserver TimeServerAnnouncementsSet.o TimeServerApp.o TimeServerConfig.o TimeServerFrame.o TimeServerGatewaySet.o \ - TimeServerLogRedirect.o TimeServerPreferences.o TimeServerThread.o TimeServerThreadHelper.o ../Common/Common.a ../GUICommon/GUICommon.a $(LIBS) - -timeserverd: TimeServerD.o TimeServerConfig.o TimeServerThread.o ../Common/Common.a - $(CC) $(LDFLAGS) -o timeserverd TimeServerD.o TimeServerConfig.o TimeServerThread.o ../Common/Common.a $(LIBS) - -TimeServerAnnouncementsSet.o: TimeServerAnnouncementsSet.cpp TimeServerAnnouncementsSet.h TimeServerDefs.h - $(CC) $(CFLAGS) -c TimeServerAnnouncementsSet.cpp - -TimeServerApp.o: TimeServerApp.cpp TimeServerApp.h TimeServerThread.h TimeServerFrame.h TimeServerLogRedirect.h TimeServerDefs.h TimeServerConfig.h \ - TimeServerThreadHelper.h ../Common/Logger.h ../Common/Version.h - $(CC) $(CFLAGS) -c TimeServerApp.cpp - -TimeServerD.o: TimeServerD.cpp TimeServerD.h TimeServerThread.h TimeServerDefs.h TimeServerConfig.h ../Common/Logger.h ../Common/Version.h - $(CC) $(CFLAGS) -c TimeServerD.cpp - -TimeServerConfig.o: TimeServerConfig.cpp TimeServerConfig.h TimeServerDefs.h - $(CC) $(CFLAGS) -c TimeServerConfig.cpp - -TimeServerFrame.o: TimeServerFrame.cpp TimeServerFrame.h TimeServerPreferences.h TimeServerDefs.h TimeServerApp.h ../Common/Version.h - $(CC) $(CFLAGS) -c TimeServerFrame.cpp - -TimeServerGatewaySet.o: TimeServerGatewaySet.cpp TimeServerGatewaySet.h TimeServerDefs.h ../GUICommon/AddressTextCtrl.h ../GUICommon/CallsignTextCtrl.h \ - ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c TimeServerGatewaySet.cpp - -TimeServerLogRedirect.o: TimeServerLogRedirect.cpp TimeServerLogRedirect.h TimeServerApp.h - $(CC) $(CFLAGS) -c TimeServerLogRedirect.cpp - -TimeServerPreferences.o: TimeServerPreferences.cpp TimeServerPreferences.h TimeServerAnnouncementsSet.h TimeServerGatewaySet.h TimeServerDefs.h - $(CC) $(CFLAGS) -c TimeServerPreferences.cpp - -TimeServerThreadHelper.o: TimeServerThreadHelper.cpp TimeServerThreadHelper.h TimeServerThread.h - $(CC) $(CFLAGS) -c TimeServerThreadHelper.cpp - -TimeServerThread.o: TimeServerThread.cpp TimeServerThread.h ../Common/DStarDefines.h ../Common/UDPReaderWriter.h ../Common/HeaderData.h \ - ../Common/AMBEData.h ../Common/SlowDataEncoder.h ../Common/Utils.h - $(CC) $(CFLAGS) -c TimeServerThread.cpp - -install: timeserver timeserverd - install -g bin -o root -m 0775 timeserver $(BINDIR) - install -g bin -o root -m 0775 timeserverd $(BINDIR) - -clean: - rm -f core timeserver timeserverd *.o *~ *.bak diff --git a/ircDDBGateway/TimerControl/Makefile b/ircDDBGateway/TimerControl/Makefile deleted file mode 100644 index acea280..0000000 --- a/ircDDBGateway/TimerControl/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -all: timercontrol timercontrold - -CFLAGS := -I../Common -I../GUICommon $(CFLAGS) - -timercontrol: TimerControlApp.o TimerControlConfig.o TimerControlFrame.o TimerControlItemFile.o TimerControlPreferences.o \ - TimerControlRemoteControlHandler.o TimerControlRemoteSet.o TimerControlRepeaterPanel.o TimerControlThread.o TimerControlThreadHelper.o \ - ../Common/Common.a ../GUICommon/GUICommon.a - $(CC) $(LDFLAGS) -o timercontrol TimerControlApp.o TimerControlConfig.o TimerControlFrame.o TimerControlItemFile.o \ - TimerControlPreferences.o TimerControlRemoteControlHandler.o TimerControlRemoteSet.o TimerControlRepeaterPanel.o \ - TimerControlThread.o TimerControlThreadHelper.o ../Common/Common.a ../GUICommon/GUICommon.a $(LIBS) - -timercontrold: TimerControlAppD.o TimerControlConfig.o TimerControlItemFile.o TimerControlRemoteControlHandler.o TimerControlThread.o \ - ../Common/Common.a - $(CC) $(LDFLAGS) -o timercontrold TimerControlAppD.o TimerControlConfig.o TimerControlItemFile.o TimerControlRemoteControlHandler.o \ - TimerControlThread.o ../Common/Common.a $(LIBS) - -TimerControlApp.o: TimerControlApp.cpp TimerControlApp.h TimerControlFrame.h TimerControlConfig.h TimerControlDefs.h TimerControlThread.h \ - TimerControlThreadHelper.h ../Common/Logger.h ../Common/Version.h - $(CC) $(CFLAGS) -c TimerControlApp.cpp - -TimerControlAppD.o: TimerControlAppD.cpp TimerControlAppD.h TimerControlFrame.h TimerControlConfig.h TimerControlDefs.h ../Common/Logger.h \ - ../Common/Version.h - $(CC) $(CFLAGS) -c TimerControlAppD.cpp - -TimerControlConfig.o: TimerControlConfig.cpp TimerControlConfig.h - $(CC) $(CFLAGS) -c TimerControlConfig.cpp - -TimerControlFrame.o: TimerControlFrame.cpp TimerControlFrame.h TimerControlRemoteControlHandler.h TimerControlRepeaterPanel.h \ - TimerControlItemFile.h TimerControlPreferences.h TimerControlApp.h TimerControlDefs.h TimerControlItem.h ../Common/Defs.h \ - ../Common/Version.h ../Common/SHA256.h - $(CC) $(CFLAGS) -c TimerControlFrame.cpp - -TimerControlItemFile.o: TimerControlItemFile.cpp TimerControlItemFile.h TimerControlItem.h - $(CC) $(CFLAGS) -c TimerControlItemFile.cpp - -TimerControlPreferences.o: TimerControlPreferences.cpp TimerControlPreferences.h TimerControlRemoteSet.h TimerControlDefs.h - $(CC) $(CFLAGS) -c TimerControlPreferences.cpp - -TimerControlRemoteControlHandler.o: TimerControlRemoteControlHandler.cpp TimerControlRemoteControlHandler.h \ - ../Common/UDPReaderWriter.h ../Common/DStarDefines.h ../Common/Defs.h - $(CC) $(CFLAGS) -c TimerControlRemoteControlHandler.cpp - -TimerControlRemoteSet.o: TimerControlRemoteSet.cpp TimerControlRemoteSet.h ../GUICommon/PortTextCtrl.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c TimerControlRemoteSet.cpp - -TimerControlRepeaterPanel.o: TimerControlRepeaterPanel.cpp TimerControlRepeaterPanel.h TimerControlApp.h TimerControlItem.h \ - ../Common/DStarDefines.h ../Common/HostFile.h - $(CC) $(CFLAGS) -c TimerControlRepeaterPanel.cpp - -TimerControlThreadHelper.o: TimerControlThreadHelper.cpp TimerControlThreadHelper.h TimerControlThread.h - $(CC) $(CFLAGS) -c TimerControlThreadHelper.cpp - -TimerControlThread.o: TimerControlThread.cpp TimerControlThread.h TimerControlRemoteControlHandler.h TimerControlItem.h TimerControlItemFile.h \ - ../Common/Defs.h ../Common/SHA256.h - $(CC) $(CFLAGS) -c TimerControlThread.cpp - -install: timercontrol timercontrold - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 timercontrol $(BINDIR) - install -g bin -o root -m 0775 timercontrold $(BINDIR) - -clean: - rm -f core timercontrol timercontrold *.o *~ *.bak diff --git a/ircDDBGateway/VoiceTransmit/Makefile b/ircDDBGateway/VoiceTransmit/Makefile deleted file mode 100644 index fec2541..0000000 --- a/ircDDBGateway/VoiceTransmit/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -all: voicetransmit - -CFLAGS := -I../Common $(CFLAGS) - -voicetransmit: VoiceTransmit.o VoiceStore.o ../Common/Common.a - $(CC) $(LDFLAGS) -o voicetransmit VoiceTransmit.o VoiceStore.o ../Common/Common.a $(LIBS) - -VoiceTransmit.o: VoiceTransmit.cpp VoiceTransmit.h VoiceStore.h ../Common/UDPReaderWriter.h ../Common/HeaderData.h ../Common/AMBEData.h \ - ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c VoiceTransmit.cpp - -VoiceStore.o: VoiceStore.cpp VoiceStore.h ../Common/HeaderData.h ../Common/AMBEData.h ../Common/DVTOOLFileReader.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c VoiceStore.cpp - -install: voicetransmit - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 voicetransmit $(BINDIR) - -clean: - rm -f core voicetransmit *.o *~ *.bak diff --git a/ircDDBGateway/ircDDB/Makefile b/ircDDBGateway/ircDDB/Makefile deleted file mode 100644 index 9ec37d1..0000000 --- a/ircDDBGateway/ircDDB/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -all: libircDDB.a - -libircDDB.a: IRCClient.o IRCDDB.o IRCDDBClient.o IRCDDBMultiClient.o IRCDDBApp.o IRCMessage.o IRCMessageQueue.o IRCProtocol.o IRCReceiver.o IRCutils.o - ar rcs libircDDB.a IRCClient.o IRCDDB.o IRCDDBMultiClient.o IRCDDBClient.o IRCDDBApp.o IRCMessage.o IRCMessageQueue.o IRCProtocol.o IRCReceiver.o IRCutils.o - -IRCClient.o: IRCClient.cpp IRCClient.h IRCReceiver.h IRCProtocol.h IRCutils.h IRCMessageQueue.h IRCApplication.h - $(CC) $(CFLAGS) -c IRCClient.cpp - -IRCDDB.o: IRCDDB.cpp IRCDDB.h - $(CC) $(CFLAGS) -c IRCDDB.cpp - -IRCDDBClient.o: IRCDDBClient.cpp IRCDDBClient.h IRCDDB.h IRCClient.h IRCDDBApp.h - $(CC) $(CFLAGS) -c IRCDDBClient.cpp - -IRCDDBMultiClient.o: IRCDDBMultiClient.cpp IRCDDBMultiClient.h IRCDDB.h - $(CC) $(CFLAGS) -c IRCDDBMultiClient.cpp - -IRCDDBApp.o: IRCDDBApp.cpp IRCDDBApp.h IRCDDB.h IRCApplication.h IRCutils.h - $(CC) $(CFLAGS) -c IRCDDBApp.cpp - -IRCMessage.o: IRCMessage.cpp IRCMessage.h - $(CC) $(CFLAGS) -c IRCMessage.cpp - -IRCMessageQueue.o: IRCMessageQueue.cpp IRCMessageQueue.h IRCMessage.h - $(CC) $(CFLAGS) -c IRCMessageQueue.cpp - -IRCProtocol.o: IRCProtocol.cpp IRCProtocol.h IRCApplication.h IRCMessageQueue.h - $(CC) $(CFLAGS) -c IRCProtocol.cpp - -IRCReceiver.o: IRCReceiver.cpp IRCReceiver.h IRCMessageQueue.h - $(CC) $(CFLAGS) -c IRCReceiver.cpp - -IRCutils.o: IRCutils.cpp IRCutils.h - $(CC) $(CFLAGS) -c IRCutils.cpp - -clean: - rm -f core libircDDB.a *.o *.bak *~ diff --git a/ircDDBGateway/ircDDBGateway/Makefile b/ircDDBGateway/ircDDBGateway/Makefile deleted file mode 100644 index ed409cb..0000000 --- a/ircDDBGateway/ircDDBGateway/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -all: ircddbgateway ircddbgatewayd - -CFLAGS := -I../ircDDB -I../Common $(CFLAGS) - -ircddbgateway: IRCDDBGatewayApp.o IRCDDBGatewayFrame.o IRCDDBGatewayLogRedirect.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o IRCDDBGatewayThreadHelper.o \ - ../ircDDB/libircDDB.a ../Common/Common.a - $(CC) $(LDFLAGS) -o ircddbgateway IRCDDBGatewayApp.o IRCDDBGatewayFrame.o IRCDDBGatewayLogRedirect.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o \ - IRCDDBGatewayThreadHelper.o ../ircDDB/libircDDB.a ../Common/Common.a $(LIBS) - -ircddbgatewayd: IRCDDBGatewayAppD.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o ../ircDDB/libircDDB.a ../Common/Common.a - $(CC) $(LDFLAGS) -o ircddbgatewayd IRCDDBGatewayAppD.o IRCDDBGatewayStatusData.o IRCDDBGatewayThread.o ../ircDDB/libircDDB.a ../Common/Common.a $(LIBS) - -IRCDDBGatewayApp.o: IRCDDBGatewayApp.cpp IRCDDBGatewayApp.h IRCDDBGatewayThread.h IRCDDBGatewayFrame.h IRCDDBGatewayLogRedirect.h IRCDDBGatewayStatusData.h \ - IRCDDBGatewayDefs.h ../Common/Defs.h ../Common/RepeaterProtocolHandler.h ../Common/HBRepeaterProtocolHandler.h IRCDDBGatewayThreadHelper.h \ - ../Common/IcomRepeaterProtocolHandler.h ../Common/APRSWriter.h ../Common/Logger.h ../Common/Version.h ../Common/DummyRepeaterProtocolHandler.h \ - ../Common/Utils.h ../Common/IRCDDBGatewayConfig.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c IRCDDBGatewayApp.cpp - -IRCDDBGatewayAppD.o: IRCDDBGatewayAppD.cpp IRCDDBGatewayAppD.h IRCDDBGatewayThread.h IRCDDBGatewayDefs.h ../Common/Defs.h ../Common/RepeaterProtocolHandler.h \ - ../Common/HBRepeaterProtocolHandler.h ../Common/IcomRepeaterProtocolHandler.h ../Common/Logger.h ../Common/APRSWriter.h ../Common/Version.h \ - ../Common/DummyRepeaterProtocolHandler.h ../Common/Utils.h ../Common/IRCDDBGatewayConfig.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c IRCDDBGatewayAppD.cpp - -IRCDDBGatewayFrame.o: IRCDDBGatewayFrame.cpp IRCDDBGatewayFrame.h IRCDDBGatewayStatusData.h IRCDDBGatewayApp.h ../Common/Defs.h ../Common/Version.h \ - ../Common/LogEvent.h - $(CC) $(CFLAGS) -c IRCDDBGatewayFrame.cpp - -IRCDDBGatewayLogRedirect.o: IRCDDBGatewayLogRedirect.cpp IRCDDBGatewayLogRedirect.h IRCDDBGatewayApp.h - $(CC) $(CFLAGS) -c IRCDDBGatewayLogRedirect.cpp - -IRCDDBGatewayStatusData.o: IRCDDBGatewayStatusData.cpp IRCDDBGatewayStatusData.h ../Common/Defs.h - $(CC) $(CFLAGS) -c IRCDDBGatewayStatusData.cpp - -IRCDDBGatewayThreadHelper.o: IRCDDBGatewayThreadHelper.cpp IRCDDBGatewayThreadHelper.h IRCDDBGatewayThread.h IRCDDBGatewayStatusData.h - $(CC) $(CFLAGS) -c IRCDDBGatewayThreadHelper.cpp - -IRCDDBGatewayThread.o: IRCDDBGatewayThread.cpp IRCDDBGatewayThread.h IRCDDBGatewayStatusData.h IRCDDBGatewayApp.h ../Common/Defs.h \ - ../Common/CacheManager.h ../Common/HeaderData.h ../Common/AMBEData.h ../Common/HostFile.h ../Common/RepeaterProtocolHandler.h \ - ../Common/DCSProtocolHandler.h ../Common/DExtraProtocolHandler.h ../Common/DPlusProtocolHandler.h ../Common/G2ProtocolHandler.h \ - ../Common/DCSHandler.h ../Common/DExtraHandler.h ../Common/DPlusHandler.h ../Common/ConnectData.h ../Common/DStarDefines.h \ - ../Common/Utils.h ../Common/Timer.h ../Common/G2Handler.h ../Common/RepeaterHandler.h ../Common/PollData.h ../Common/HeaderLogger.h \ - ../Common/APRSWriter.h ../Common/AudioUnit.h ../Common/StarNetHandler.h ../Common/DDData.h ../Common/RemoteHandler.h ../Common/DDHandler.h \ - ../Common/HBRepeaterProtocolHandler.h ../Common/IcomRepeaterProtocolHandler.h ../Common/StatusData.h ../Common/CallsignServer.h \ - ../Common/HeardData.h ../Common/DCSProtocolHandlerPool.h ../Common/DPlusProtocolHandlerPool.h ../Common/DummyRepeaterProtocolHandler.h \ - ../Common/CCSHandler.h ../Common/CCSData.h ../Common/CallsignList.h ../Common/DExtraProtocolHandlerPool.h ../ircDDB/IRCDDB.h - $(CC) $(CFLAGS) -c IRCDDBGatewayThread.cpp - -test: ircddbgateway ircddbgatewayd - $(CC) $(CFLAGS) -c APRSWriterThreadTest.cpp - -install: ircddbgateway ircddbgatewayd - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 ircddbgateway $(BINDIR) - install -g bin -o root -m 0775 ircddbgatewayd $(BINDIR) - -clean: - rm -f core ircddbgateway ircddbgatewayd *.o *~ *.bak diff --git a/ircDDBGateway/ircDDBGatewayConfig/Makefile b/ircDDBGateway/ircDDBGatewayConfig/Makefile deleted file mode 100644 index 0ecb119..0000000 --- a/ircDDBGateway/ircDDBGatewayConfig/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -all: ircddbgatewayconfig - -CFLAGS := -I../Common -I../GUICommon $(CFLAGS) - -ircddbgatewayconfig: IRCDDBGatewayConfigApp.o IRCDDBGatewayConfigFrame.o IRCDDBGatewayConfigGatewaySet.o IRCDDBGatewayConfigIrcDDBSet.o \ - IRCDDBGatewayConfigMiscellaneousSet.o ../GUICommon/GUICommon.a ../Common/Common.a - $(CC) $(LDFLAGS) -o ircddbgatewayconfig IRCDDBGatewayConfigApp.o IRCDDBGatewayConfigFrame.o IRCDDBGatewayConfigGatewaySet.o \ - IRCDDBGatewayConfigIrcDDBSet.o IRCDDBGatewayConfigMiscellaneousSet.o ../GUICommon/GUICommon.a ../Common/Common.a $(LIBS) - -IRCDDBGatewayConfigApp.o: IRCDDBGatewayConfigApp.cpp IRCDDBGatewayConfigApp.h IRCDDBGatewayConfigFrame.h IRCDDBGatewayConfigDefs.h ../Common/Defs.h \ - ../Common/Version.h ../Common/Utils.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfigApp.cpp - -IRCDDBGatewayConfigFrame.o: IRCDDBGatewayConfigFrame.cpp IRCDDBGatewayConfigFrame.h ../Common/Defs.h ../Common/Version.h ../Common/IRCDDBGatewayConfig.h \ - IRCDDBGatewayConfigMiscellaneousSet.h IRCDDBGatewayConfigGatewaySet.h IRCDDBGatewayConfigIrcDDBSet.h ../GUICommon/RepeaterDataSet.h \ - ../GUICommon/DPRSSet.h ../GUICommon/DPlusSet.h ../GUICommon/RemoteSet.h ../GUICommon/StarNetSet.h ../GUICommon/DExtraSet.h ../GUICommon/DCSSet.h \ - ../GUICommon/RepeaterInfoSet.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfigFrame.cpp - -IRCDDBGatewayConfigGatewaySet.o: IRCDDBGatewayConfigGatewaySet.cpp IRCDDBGatewayConfigGatewaySet.h ../Common/DStarDefines.h ../GUICommon/AddressTextCtrl.h \ - ../GUICommon/PortTextCtrl.h ../GUICommon/CallsignTextCtrl.h ../GUICommon/DescriptionTextCtrl.h ../Common/Defs.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfigGatewaySet.cpp - -IRCDDBGatewayConfigIrcDDBSet.o: IRCDDBGatewayConfigIrcDDBSet.cpp IRCDDBGatewayConfigIrcDDBSet.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfigIrcDDBSet.cpp - -IRCDDBGatewayConfigMiscellaneousSet.o: IRCDDBGatewayConfigMiscellaneousSet.cpp IRCDDBGatewayConfigMiscellaneousSet.h ../Common/Defs.h ../Common/DStarDefines.h - $(CC) $(CFLAGS) -c IRCDDBGatewayConfigMiscellaneousSet.cpp - -install: ircddbgatewayconfig - install -d -g bin -o root -m 0775 $(BINDIR) - install -g bin -o root -m 0775 ircddbgatewayconfig $(BINDIR) - -clean: - rm -f core ircddbgatewayconfig *.o *~ *.bak