Whamcloud - gitweb
b=17605
[fs/lustre-release.git] / lustre / liblustre / tests / Makefile.am
1 ## Liblustre excecutables & libraries Makefile
2
3 AM_CPPFLAGS = -I$(SYSIO)/include -I/opt/lam/include $(LLCPPFLAGS) -I$(top_srcdir)/lnet/ulnds
4 AM_CFLAGS = $(LLCFLAGS)
5 AM_LIBS = $(LIBEFENCE) $(LIBREADLINE)
6
7 LLIB_EXEC = $(top_builddir)/lustre/utils/liblustreapi.a $(top_builddir)/lustre/liblustre/liblustre.a $(CAP_LIBS) $(PTHREAD_LIBS) $(ZLIB)
8
9 if LIBLUSTRE
10 noinst_LIBRARIES = libtestcommon.a
11
12 if LIBLUSTRE_TESTS
13 if MPITESTS
14 SUBDIRS = mpi
15 endif # MPITESTS
16
17 noinst_PROGRAMS = sanity
18
19 if !CRAY_XT3
20 noinst_PROGRAMS += recovery_small replay_single replay_ost_single
21 endif # !CRAY_XT3
22
23 liblustre_testdir=$(libdir)/lustre/liblustre/tests
24 liblustre_test_PROGRAMS = $(noinst_PROGRAMS)
25 liblustre_test_LIBRARIES = $(noinst_LIBRARIES)
26
27 endif # LIBLUSTRE_TESTS
28 endif # LIBLUSTRE
29
30 DIST_SUBDIRS := mpi
31
32 libtestcommon_a_SOURCES = test_common.c test_common.h
33
34 sanity_SOURCES = sanity.c
35 sanity_CFLAGS = $(LL_CFLAGS)
36 sanity_LDADD := libtestcommon.a $(LLIB_EXEC)
37 sanity_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
38
39 recovery_small_SOURCES = recovery_small.c
40 recovery_small_CFLAGS = $(LL_CFLAGS)
41 recovery_small_LDADD := libtestcommon.a $(LLIB_EXEC) 
42 recovery_small_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
43
44 replay_single_SOURCES = replay_single.c
45 replay_single_CFLAGS = $(LL_CFLAGS)
46 replay_single_LDADD := libtestcommon.a $(LLIB_EXEC)
47 replay_single_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
48
49 replay_ost_single_SOURCES = replay_ost_single.c
50 replay_ost_single_CFLAGS = $(LL_CFLAGS)
51 replay_ost_single_LDADD := libtestcommon.a $(LLIB_EXEC)
52 replay_ost_single_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a