aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.am
blob: 41e5441983896897c2ee65960992e737bd2582f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
NULL =

AM_CFLAGS = \
	-I$(top_srcdir)/include \
	$(NULL)

bin_PROGRAMS = \
	ipc-modem \
	ipc-test \
	nv_data-imei \
	nv_data-md5 \
	$(NULL)

# TODO: Find a way to make test more modular and represent each run of the
# nv_data-imei in TEST while having it implemented in a single python file
PY_LOG_COMPILER = $(PYTHON)
TEST_EXTENSIONS = .py
TESTS = ipc-modem.py \
	nv_data-imei.py \
	nv_data-md5.py

ipc_modem_SOURCES = ipc-modem.c
ipc_modem_LDADD = $(top_builddir)/samsung-ipc/libsamsung-ipc.la
ipc_modem_LDFLAGS = -lpthread

ipc_test_SOURCES = ipc-test.c
ipc_test_LDADD = $(top_builddir)/samsung-ipc/libsamsung-ipc.la
ipc_test_LDFLAGS =

nv_data_md5_SOURCES = nv_data-md5.c
nv_data_md5_LDADD = $(top_builddir)/samsung-ipc/libsamsung-ipc.la
nv_data_md5_LDFLAGS =

nv_data_imei_SOURCES = nv_data-imei.c
nv_data_imei_LDADD = $(top_builddir)/samsung-ipc/libsamsung-ipc.la
nv_data_imei_LDFLAGS =