Whamcloud - gitweb
08bd86b1ac9d83aaf6ba9bd0d4ebb07c14e06ee1
[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 noinst_PROGRAMS = sanity
14
15 if !CRAY_XT3
16 noinst_PROGRAMS += recovery_small replay_single replay_ost_single
17 endif # !CRAY_XT3
18
19 if MPITESTS
20 noinst_PROGRAMS += test_lock_cancel
21 endif # MPITESTS
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 libtestcommon_a_SOURCES = test_common.c test_common.h
31
32 sanity_SOURCES = sanity.c
33 sanity_CFLAGS = $(LL_CFLAGS)
34 sanity_LDADD := libtestcommon.a $(LLIB_EXEC)
35 sanity_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
36
37 recovery_small_SOURCES = recovery_small.c
38 recovery_small_CFLAGS = $(LL_CFLAGS)
39 recovery_small_LDADD := libtestcommon.a $(LLIB_EXEC) 
40 recovery_small_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
41
42 replay_single_SOURCES = replay_single.c
43 replay_single_CFLAGS = $(LL_CFLAGS)
44 replay_single_LDADD := libtestcommon.a $(LLIB_EXEC)
45 replay_single_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
46
47 replay_ost_single_SOURCES = replay_ost_single.c
48 replay_ost_single_CFLAGS = $(LL_CFLAGS)
49 replay_ost_single_LDADD := libtestcommon.a $(LLIB_EXEC)
50 replay_ost_single_DEPENDENCIES = $(top_builddir)/lustre/liblustre/liblustre.a libtestcommon.a
51
52 if MPITESTS
53 test_lock_cancel_SOURCES = test_lock_cancel.c
54 test_lock_cancel_CFLAGS = $(LL_CFLAGS) -I/opt/lam/include
55 test_lock_cancel_LDADD :=  $(LLIB_EXEC)  -L/opt/lam/lib -lmpi -llam
56 endif
57
58