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 37 38
|
## Process this file with automake to produce Makefile.in
# BLURB lgpl
#
# Coda File System
# Release 5
#
# Copyright (c) 1987-1999 Carnegie Mellon University
# Additional copyrights listed below
#
# This code is distributed "AS IS" without warranty of any kind under
# the terms of the GNU Library General Public Licence Version 2, as
# shown in the file LICENSE. The technical and financial contributors to
# Coda are listed in the file CREDITS.
#
# Additional copyrights
# none currently
#
#*/
noinst_PROGRAMS = testrvm rvm_basher lwp_basher
INCLUDES = -I$(top_srcdir)/include
testrvm_SOURCES = testrvm.c testrvm.h
testrvm_LDADD = $(top_builddir)/rvm/librvm.la
rvm_basher_LDADD = $(top_builddir)/rds/librds.la \
$(top_builddir)/seg/libseg.la $(top_builddir)/rvm/librvm.la
lwp_basher_LDFLAGS = -static
lwp_basher_LDADD = $(top_builddir)/rds/librdslwp.la \
$(top_builddir)/seg/libseg.la $(top_builddir)/rvm/librvmlwp.la \
$(LIBLWP) $(LIBPTHREAD)
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
|