summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-05-01 17:51:39 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-05-01 17:51:39 +0000
commit46892d1b197a50c48977f3b273cd91b0bbed3d70 (patch)
treeb44756b9ee3334ff967cdbbdb3d6fffe436a522b /test
parent9ee3aebb74b8f4a733678f996a3e02a5cbd8c726 (diff)
downloadlibapr-46892d1b197a50c48977f3b273cd91b0bbed3d70.tar.gz
don't build the APR DSO test program automatically... we don't know
how to build it portably, and now that we build the test directory automatically it becomes very important to ignore it so that make finishes git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61577 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.in8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 35aa7489c..4ec57897a 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -15,15 +15,13 @@ PROGRAMS = \
testmmap@EXEEXT@ \
testshmem@EXEEXT@ \
testpipe@EXEEXT@ \
- testdso@EXEEXT@ \
testoc@EXEEXT@ \
testuuid@EXEEXT@ \
testsockopt@EXEEXT@ \
testipsub@EXEEXT@ \
testmd5@EXEEXT@ \
testpoll@EXEEXT@ \
- occhild@EXEEXT@ \
- mod_test.so
+ occhild@EXEEXT@
TARGETS = $(PROGRAMS)
@@ -32,7 +30,7 @@ TARGETS = $(PROGRAMS)
LOCAL_LIBS=../libapr.la ../shmem/unix/mm/libmm.la
-CLEAN_TARGETS = testfile.tmp
+CLEAN_TARGETS = testfile.tmp testdso@EXEEXT@ mod_test.so
INCDIR=../include
INCLUDES=-I$(INCDIR)
@@ -48,7 +46,7 @@ testflock@EXEEXT@: testflock.lo $(LOCAL_LIBS)
$(LINK) testflock.lo $(LOCAL_LIBS) $(ALL_LIBS)
### why the export-dynamic?
-testdso@EXEEXT@: testdso.lo $(LOCAL_LIBS)
+testdso@EXEEXT@: testdso.lo mod_test.so $(LOCAL_LIBS)
$(LINK) --export-dynamic testdso.lo $(LOCAL_LIBS) $(ALL_LIBS)
testoc@EXEEXT@: testoc.lo $(LOCAL_LIBS)