[Modcplusplus-devel] (barbee-) apr_cplusplus/test .cvsignoreMakefile.am
Brought to you by:
gr84b8,
johnksterling
|
From: Mod C. C. L. <mod...@so...> - 2002-02-22 16:36:24
|
Mod Cplusplus CVS committal
Author : barbee-
Project : apr_cplusplus
Module : test
Dir : apr_cplusplus/test
Modified Files:
.cvsignore Makefile.am
Log Message:
build, configure and cvsignores for new APRPath.
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- .cvsignore 19 Feb 2002 15:48:21 -0000 1.2
+++ .cvsignore 22 Feb 2002 16:36:23 -0000 1.3
@@ -2,8 +2,10 @@
Makefile
.deps
.libs
+*core
test_hash
test_table
test_hashiter
test_time
test_exception
+test_path
===================================================================
RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- Makefile.am 19 Feb 2002 15:48:21 -0000 1.4
+++ Makefile.am 22 Feb 2002 16:36:23 -0000 1.5
@@ -7,6 +7,7 @@
STANDARD_LDADDS = $(top_srcdir)/src/tables/libcpp_tables.la \
$(top_srcdir)/src/times/libcpp_times.la \
$(top_srcdir)/src/exceptions/libcpp_exceptions.la \
+ $(top_srcdir)/src/files/libcpp_files.la \
$(LIB_PTHREAD) $(LIB_DL) -lcrypt \
$(APR_DIR)/libapr.la
@@ -15,7 +16,8 @@
test_table \
test_hashiter \
test_time \
- test_exception
+ test_exception \
+ test_path
test_hash_LDADD = $(STANDARD_LDADDS)
test_hash_SOURCES = test_hash.cpp
@@ -32,8 +34,12 @@
test_exception_LDADD = $(STANDARD_LDADDS)
test_exception_SOURCES = test_exception.cpp
+test_path_LDADD = $(STANDARD_LDADDS)
+test_path_SOURCES = test_path.cpp
+
TESTS = test_hash \
test_hashiter \
test_table \
test_time \
- test_exception
+ test_exception \
+ test_path
|