summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-14 15:06:09 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-14 15:06:09 +0100
commit18bcc8ab6214e92539370eb3c5b601f18def4dde (patch)
tree86aa13dfd5b5a8b749c713d289858553d07d91ce /utils
parent8497b0a78671e09015ec2cb40f0a21cae7baf5ad (diff)
pcsc: Allow to disable the PCSC dependency
* PCSC is enabled by default * --enable-pcsc is enabling it * --disable-pcscis disabling it * Fix the makefile of the utilities to not build pcsc and use the right header files/libraries.
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am
index 7d784bd2..41f91f9f 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -3,7 +3,6 @@ AM_CPPFLAGS = -I$(top_srcdir)/include
AM_CFLAGS = -Wall
bin_PROGRAMS = osmo-arfcn osmo-auc-gen
-noinst_PROGRAMS = osmo-sim-test
osmo_arfcn_SOURCES = osmo-arfcn.c
osmo_arfcn_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la
@@ -11,7 +10,10 @@ osmo_arfcn_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/li
osmo_auc_gen_SOURCES = osmo-auc-gen.c
osmo_auc_gen_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la
+if ENABLE_PCSC
+noinst_PROGRAMS = osmo-sim-test
osmo_sim_test_SOURCES = osmo-sim-test.c
-osmo_sim_test_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la $(top_builddir)/src/sim/libosmosim.la -lpcsclite
-osmo_sim_test_CFLAGS = -I/usr/include/PCSC
+osmo_sim_test_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la $(top_builddir)/src/sim/libosmosim.la $(PCSC_LIBS)
+osmo_sim_test_CFLAGS = $(PCSC_CFLAGS)
+endif
endif