diff options
author | Harald Welte <laforge@gnumonks.org> | 2014-10-26 20:14:04 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2014-10-26 20:14:04 +0100 |
commit | a97ebc9599d4b3210d7127a2cc75d552e69eeb9a (patch) | |
tree | 60eee24f5b78ad5115b21cb9996406e5cbf4fd3d /utils/Makefile.am | |
parent | 42645d7d78a22db7b76039407b7b43bc0cc79c54 (diff) | |
parent | 534163badec879a644af985c9f5d04b7c957a355 (diff) |
Merge branch 'laforge/sim'
This contains some work from 2012 about creating a general library about
the data structure of data contained on SIM cards. This 'libosmosim' is
supposed to be used by (among others)
* tools to review/modify/personalize SIM card filesystem data
* virtual SIM card implementation
Diffstat (limited to 'utils/Makefile.am')
-rw-r--r-- | utils/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/Makefile.am b/utils/Makefile.am index 51c884a1..7d784bd2 100644 --- a/utils/Makefile.am +++ b/utils/Makefile.am @@ -3,10 +3,15 @@ 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 osmo_auc_gen_SOURCES = osmo-auc-gen.c osmo_auc_gen_LDADD = $(top_builddir)/src/libosmocore.la $(top_builddir)/src/gsm/libosmogsm.la + +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 endif |