No Message Supplied

This commit is contained in:
Dean Roehrich
2002-03-21 17:53:32 +00:00
parent 2c21604151
commit 633cfac4d0
3 changed files with 15 additions and 6 deletions
-1
View File
@@ -15,7 +15,6 @@ AC_PREFIX_DEFAULT(/usr/local/dmapi_tests)
dnl Checks for programs.
dnl Checks for libraries.
AC_CHECK_LIB(handle,path_to_fshandle)
AC_CHECK_LIB(dm,dm_init_service)
dnl Checks for header files.
+2 -1
View File
@@ -45,7 +45,8 @@ bin_PROGRAMS = \
test_invis \
invis_test \
region_test \
test_efault
test_efault \
mmap
INCLUDES += -I ..
+13 -4
View File
@@ -71,7 +71,7 @@ PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
VERSION = @VERSION@
bin_PROGRAMS = test_rights test_fileattr test_hole test_dmattr test_eventlist test_region send_msg dm_test_daemon dump_allocinfo test_invis invis_test region_test test_efault
bin_PROGRAMS = test_rights test_fileattr test_hole test_dmattr test_eventlist test_region send_msg dm_test_daemon dump_allocinfo test_invis invis_test region_test test_efault mmap
INCLUDES = -I ..
@@ -154,6 +154,11 @@ test_efault_OBJECTS = test_efault.o
test_efault_LDADD = $(LDADD)
test_efault_DEPENDENCIES = $(top_builddir)/src/common/lib/libdmtest.la
test_efault_LDFLAGS =
mmap_SOURCES = mmap.c
mmap_OBJECTS = mmap.o
mmap_LDADD = $(LDADD)
mmap_DEPENDENCIES = $(top_builddir)/src/common/lib/libdmtest.la
mmap_LDFLAGS =
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -167,12 +172,12 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = gtar
GZIP_ENV = --best
DEP_FILES = .deps/dm_test_daemon.P .deps/dump_allocinfo.P \
.deps/invis_test.P .deps/region_test.P .deps/send_msg.P \
.deps/invis_test.P .deps/mmap.P .deps/region_test.P .deps/send_msg.P \
.deps/test_dmattr.P .deps/test_efault.P .deps/test_eventlist.P \
.deps/test_fileattr.P .deps/test_hole.P .deps/test_invis.P \
.deps/test_region.P .deps/test_rights.P
SOURCES = test_rights.c test_fileattr.c test_hole.c test_dmattr.c test_eventlist.c test_region.c send_msg.c dm_test_daemon.c dump_allocinfo.c test_invis.c invis_test.c region_test.c test_efault.c
OBJECTS = test_rights.o test_fileattr.o test_hole.o test_dmattr.o test_eventlist.o test_region.o send_msg.o dm_test_daemon.o dump_allocinfo.o test_invis.o invis_test.o region_test.o test_efault.o
SOURCES = test_rights.c test_fileattr.c test_hole.c test_dmattr.c test_eventlist.c test_region.c send_msg.c dm_test_daemon.c dump_allocinfo.c test_invis.c invis_test.c region_test.c test_efault.c mmap.c
OBJECTS = test_rights.o test_fileattr.o test_hole.o test_dmattr.o test_eventlist.o test_region.o send_msg.o dm_test_daemon.o dump_allocinfo.o test_invis.o invis_test.o region_test.o test_efault.o mmap.o
all: all-redirect
.SUFFIXES:
@@ -294,6 +299,10 @@ test_efault: $(test_efault_OBJECTS) $(test_efault_DEPENDENCIES)
@rm -f test_efault
$(LINK) $(test_efault_LDFLAGS) $(test_efault_OBJECTS) $(test_efault_LDADD) $(LIBS)
mmap: $(mmap_OBJECTS) $(mmap_DEPENDENCIES)
@rm -f mmap
$(LINK) $(mmap_LDFLAGS) $(mmap_OBJECTS) $(mmap_LDADD) $(LIBS)
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)