blob: 1c9f63d6e3a8b47e3b3e01480cfb024aafbd171b [file] [log] [blame]
Harald Welte35cbc112015-09-11 17:36:59 +02001
2PKG_INCLUDES:=$(shell pkg-config --cflags libosmocore libosmovty libosmogsm libasn1c)
3PKG_LDFLAGS:=$(shell pkg-config --libs libosmocore libosmovty libosmogsm libasn1c)
4
Daniel Willmann39e643a2015-11-24 18:03:29 +01005CFLAGS:=-g -Wall $(PKG_INCLUDES) -I.. -I../hnbap
Harald Welte35cbc112015-09-11 17:36:59 +02006LDFLAGS:=$(PKG_LDFLAGS)
7
Daniel Willmann54a9a142015-11-23 14:01:25 +01008test-helpers: ../iu_helpers.o ../asn1helpers.o test-helpers.c
Harald Welte35cbc112015-09-11 17:36:59 +02009 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
Daniel Willmann39e643a2015-11-24 18:03:29 +010010
11test-hnbap: ../iu_helpers.o ../asn1helpers.o ../hnbap_common.o ../hnbap_decoder.o test-hnbap.c ../hnbap/libosmo-asn1-hnbap.a
12 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^