diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-08 11:49:26 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-01-10 20:32:49 +0100 |
commit | 70c5ba0867945bb097f466262ce03470b690518f (patch) | |
tree | c7b14e7e5debdad25778d18559d42f5306289e67 /src/Makefile.am | |
parent | 3bcda54518c4914c1b934d7d12b7219d1ee7d941 (diff) | |
download | dabmux-70c5ba0867945bb097f466262ce03470b690518f.tar.gz dabmux-70c5ba0867945bb097f466262ce03470b690518f.tar.bz2 dabmux-70c5ba0867945bb097f466262ce03470b690518f.zip |
Add TAI handling for EDI with TIST
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 42 |
1 files changed, 25 insertions, 17 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1cf8dbb..4c5cd60 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -39,9 +39,16 @@ bin_PROGRAMS=odr-dabmux odr-bridgetest ZMQ_LIBS = endif +if HAVE_CURL_TEST +CURL_LIBS =-lcurl +else +CURL_LIBS = +endif + odr_dabmux_CFLAGS =-Wall -I$(FARSYNC_DIR) $(GITVERSION_FLAGS) odr_dabmux_CXXFLAGS =-Wall -I$(FARSYNC_DIR) $(GITVERSION_FLAGS) -odr_dabmux_LDADD =$(FEC_LIBS) $(ZMQ_LIBS) -lpthread -lboost_thread -lboost_system +odr_dabmux_LDADD =$(FEC_LIBS) $(ZMQ_LIBS) $(CURL_LIBS) \ + -lpthread -lboost_thread -lboost_system odr_dabmux_SOURCES =DabMux.cpp DabMux.h \ DabMultiplexer.cpp DabMultiplexer.h \ dabInput.h dabInput.cpp \ @@ -76,32 +83,33 @@ odr_dabmux_SOURCES =DabMux.cpp DabMux.h \ dabOutput/edi/TagItems.cpp dabOutput/edi/TagItems.h \ dabOutput/edi/TagPacket.cpp dabOutput/edi/TagPacket.h \ dabOutput/edi/PFT.cpp dabOutput/edi/PFT.h \ - bridge.h bridge.c \ - utils.cpp utils.h \ - MuxElements.cpp MuxElements.h \ - RemoteControl.cpp RemoteControl.h \ - ParserCmdline.cpp ParserCmdline.h \ + ClockTAI.h ClockTAI.cpp \ ConfigParser.cpp ConfigParser.h \ + Dmb.h Dmb.cpp \ Eti.h Eti.cpp \ - Log.h Log.cpp \ - UdpSocket.h UdpSocket.cpp \ InetAddress.h InetAddress.cpp \ - prbs.h prbs.c \ - crc.h crc.c \ - dabUtils.h dabUtils.cpp \ - PcDebug.h \ - Dmb.h Dmb.cpp \ Interleaver.h Interleaver.cpp \ - ReedSolomon.h ReedSolomon.cpp \ - mpeg.h mpeg.c \ + Log.h Log.cpp \ ManagementServer.h ManagementServer.cpp \ + MuxElements.cpp MuxElements.h \ + ParserCmdline.cpp ParserCmdline.h \ + PcDebug.h \ + ReedSolomon.h ReedSolomon.cpp \ + RemoteControl.cpp RemoteControl.h \ TcpServer.h TcpServer.cpp \ TcpSocket.h TcpSocket.cpp \ - zmq.hpp \ + UdpSocket.h UdpSocket.cpp \ + bridge.h bridge.c \ + crc.h crc.c \ + dabUtils.h dabUtils.cpp \ + fig/FIG.h \ fig/FIG0.cpp fig/FIG0.h \ fig/FIG1.cpp fig/FIG1.h \ fig/FIGCarousel.cpp fig/FIGCarousel.h \ - fig/FIG.h + mpeg.h mpeg.c \ + prbs.h prbs.c \ + utils.cpp utils.h \ + zmq.hpp odr_bridgetest_CFLAGS =-DBRIDGE_TEST odr_bridgetest_SOURCES =bridge.c \ |