[Modcplusplus-devel] (barbee-) apr_cplusplus/test Makefile.am
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2002-02-19 04:16:42
|
Mod Cplusplus CVS committal Author : barbee- Project : apr_cplusplus Module : test Dir : apr_cplusplus/test Modified Files: Makefile.am Log Message: miscellaneous build changes for APRTime. =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/test/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 14 Feb 2002 15:05:11 -0000 1.2 +++ Makefile.am 19 Feb 2002 04:16:40 -0000 1.3 @@ -4,14 +4,16 @@ LDFLAGS += -export-dynamic -STANDARD_LDADDS = $(top_srcdir)/src/tables/libcpp_tables.la $(LIB_PTHREAD) \ - $(LIB_DL) -lcrypt \ +STANDARD_LDADDS = $(top_srcdir)/src/tables/libcpp_tables.la \ + $(top_srcdir)/src/times/libcpp_times.la \ + $(LIB_PTHREAD) $(LIB_DL) -lcrypt \ $(APR_DIR)/libapr.la noinst_PROGRAMS = \ test_hash \ test_table \ - test_hashiter + test_hashiter \ + test_time test_hash_LDADD = $(STANDARD_LDADDS) test_hash_SOURCES = test_hash.cpp @@ -22,6 +24,10 @@ test_hashiter_LDADD = $(STANDARD_LDADDS) test_hashiter_SOURCES = test_hashiter.cpp +test_time_LDADD = $(STANDARD_LDADDS) +test_time_SOURCES = test_time.cpp + TESTS = test_hash \ test_hashiter \ - test_table + test_table \ + test_time |