From 670659c28c298a6383838bdb5c94da36312c26f3 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 26 Mar 2018 19:02:08 +0200 Subject: add TITAN support for MNCC/PCU interface decoding --- titan/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 titan/Makefile (limited to 'titan/Makefile') diff --git a/titan/Makefile b/titan/Makefile new file mode 100644 index 0000000..e11dd1b --- /dev/null +++ b/titan/Makefile @@ -0,0 +1,19 @@ + +OBJS=General_Types.o Osmocom_Types.o hello.o +OBJS+=MNCC_Types.o MNCC_EncDec.o +OBJS+=PCUIF_Types.o + +CXXFLAGS=-DLINUX -DMAKEDEPEND_RUN -I/usr/include/titan -fPIC +LDFLAGS=-L/usr/lib/titan -fPIC -lttcn3-dynamic +LDFLAGS_STATIC=-L/usr/lib/titan -lttcn3 -lxml2 -lssl -lcrypto + +all: titan.a + +titan.a: $(OBJS) + $(AR) r $@ $^ + +%.o: %.cc + $(CXX) $(CXXFLAGS) -c -o $@ $^ + +clean: + @rm titan.a $(OBJS) -- cgit v1.2.3