mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 05:38:33 +03:00
This renaming is to avoid any confusion with the osmo-remsim project, living in its separate git repository. The simtrace2-cardem-pcsc doesn't feature any 'remote' part. Rather, it emulates the SIM card interface towards the device/phone/modem, and forwards it to a local PC/SC card reader. Change-Id: Ic15f0a89964a72fe3ab7a5145a073720f6207e24
15 lines
547 B
Makefile
15 lines
547 B
Makefile
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
|
|
AM_CFLAGS=-Wall -g $(LIBOSMOCORE_CFLAGS) $(LIBOSMOSIM_CFLAGS) $(LIBOSMOUSB_CFLAGS) $(LIBUSB_CFLAGS) $(COVERAGE_FLAGS)
|
|
AM_LDFLAGS=$(COVERAGE_LDFLAGS)
|
|
|
|
LDADD= $(top_builddir)/lib/libosmo-simtrace2.la \
|
|
$(LIBOSMOCORE_LIBS) $(LIBOSMOSIM_LIBS) $(LIBOSMOUSB_LIBS) $(LIBUSB_LIBS)
|
|
|
|
bin_PROGRAMS = simtrace2-cardem-pcsc simtrace2-list simtrace2-sniff
|
|
|
|
simtrace2_cardem_pcsc_SOURCES = simtrace2-cardem-pcsc.c
|
|
|
|
simtrace2_list_SOURCES = simtrace2_usb.c
|
|
|
|
simtrace2_sniff_SOURCES = simtrace2-sniff.c
|