blob: 541bc4b9d367d5aeb121641662aae65ced67e8d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
flash_torture_SOURCES = tests/mtd-tests/flash_torture.c
flash_torture_LDADD = libmtd.a
flash_torture_CPPFLAGS = $(AM_CPPFLAGS)
flash_stress_SOURCES = tests/mtd-tests/flash_stress.c
flash_stress_LDADD = libmtd.a
flash_stress_CPPFLAGS = $(AM_CPPFLAGS)
MTDTEST_BINS = \
flash_torture flash_stress
if INSTALL_TESTS
pkglibexec_PROGRAMS += $(MTDTEST_BINS)
else
noinst_PROGRAMS += $(MTDTEST_BINS)
endif
|