1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
## Process this file with automake to produce Makefile.in
noinst_PROGRAMS = testrvm lwp_basher
if LIBRVM
noinst_PROGRAMS += rvm_basher
endif
AM_CPPFLAGS = -I$(top_srcdir)/include
testrvm_SOURCES = testrvm.c testrvm.h
testrvm_LDADD = $(top_builddir)/rvm/librvmlwp.la
rvm_basher_CPPFLAGS = $(AM_CPPFLAGS)
rvm_basher_LDADD = $(top_builddir)/rds/librds.la
lwp_basher_CPPFLAGS = $(AM_CPPFLAGS) -DRVM_USELWP
lwp_basher_SOURCES = rvm_basher.c
lwp_basher_LDADD = $(top_builddir)/rds/librdslwp.la
EXTRA_DIST = README basher_parms map_chk_file map_data_file \
t1_chk_file t3_chk_file t5_chk_file test_data_file
MAINTAINERCLEANFILES = Makefile.in
|