summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraaron <aaron@13f79535-47bb-0310-9956-ffa450edef68>2001-10-11 22:17:34 +0000
committeraaron <aaron@13f79535-47bb-0310-9956-ffa450edef68>2001-10-11 22:17:34 +0000
commit7312e1d78d71b5d2be69214f6e7581ae8815705e (patch)
tree51f88def76caa6b6c3e284289ceba9173a637a4b
parent24de2f9caa3925b739a69e810d9010c73118b8f2 (diff)
downloadlibapr-7312e1d78d71b5d2be69214f6e7581ae8815705e.tar.gz
Added $(top_srcdir) and prefixed some of the files we reference with that
variable. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62418 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 3b739cc74..6e53bc96f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -39,6 +39,7 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
srcdir=@srcdir@
+top_srcdir=@top_srcdir@
delete-lib:
@if test -f $(TARGET_LIB); then \
@@ -52,11 +53,11 @@ delete-lib:
install: $(TARGET_LIB)
if [ ! -d $(includedir) ]; then \
- $(srcdir)/build/mkdir.sh $(includedir); \
+ $(top_srcdir)/build/mkdir.sh $(includedir); \
fi; \
- cp include/*.h $(includedir); \
+ cp $(top_srcdir)/include/*.h $(includedir); \
if [ ! -d $(libdir) ]; then \
- $(srcdir)/build/mkdir.sh $(libdir); \
+ $(top_srcdir)/build/mkdir.sh $(libdir); \
fi; \
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(LIBTOOL) --mode=install cp APRVARS $(libdir)
@@ -81,10 +82,10 @@ delete-exports:
fi
$(TARGET_EXPORTS):
- $(MKEXPORT) include/*.h > $@
+ $(MKEXPORT) $(top_srcdir)/include/*.h > $@
dox:
- doxygen docs/doxygen.conf
+ doxygen $(top_srcdir)/docs/doxygen.conf
test: $(TARGET_LIB)
(cd test; make clean; make; \