2018-05-15 20:32:38 +02:00
|
|
|
OBJECTS = AMBEData.o AnnouncementUnit.o APRSCollector.o APRSWriter.o APRSWriterThread.o AudioUnit.o CacheManager.o CallsignList.o \
|
2018-09-20 08:47:07 +02:00
|
|
|
CCITTChecksum.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 XLXHostsFileDownloader.o
|
2018-05-15 20:32:38 +02:00
|
|
|
|
|
|
|
|
all: Common.a
|
|
|
|
|
|
|
|
|
|
Common.a: $(OBJECTS)
|
|
|
|
|
$(AR) rcs Common.a $(OBJECTS)
|
|
|
|
|
|
|
|
|
|
%.o: %.cpp
|
2018-05-16 23:15:11 +02:00
|
|
|
$(CXX) -DwxUSE_GUI=0 $(CFLAGS) -I../ircDDB -c -o $@ $<
|
2018-05-15 20:32:38 +02:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
$(RM) Common.a *.o *.d *.bak *~
|
|
|
|
|
|