diff options
author | Joe Orton <jorton@apache.org> | 2006-02-16 13:37:55 +0000 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2006-02-16 13:37:55 +0000 |
commit | d7b9f2977b138eb711711bbd7f189f87466a2648 (patch) | |
tree | 58ca988d9834ed2326349b64a3fe26f76f6eea65 /Makefile.in | |
parent | 45d57e3cca0f23c588d173c125468693c823180f (diff) | |
download | apr-d7b9f2977b138eb711711bbd7f189f87466a2648.tar.gz |
* Makefile.in (TARGETS): Update to include all targets which require
write access to the builddir; remove export_vars.c since that is a
dependency of apr.exp.
(install): Depend on TARGETS.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@378244 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index fe6ad501c..4b16d56a5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -36,7 +36,7 @@ INSTALL_DATA = @INSTALL_DATA@ # Rules for building specific targets, starting with 'all' for # building the entire package. # -TARGETS = $(TARGET_LIB) export_vars.c apr.exp +TARGETS = $(TARGET_LIB) apr.exp apr-config.out build/apr_rules.out # bring in rules.mk for standard functionality @INCLUDE_RULES@ @@ -66,7 +66,7 @@ apr-config.out: $(APR_CONFIG) build/apr_rules.out: build/apr_rules.mk sed 's,^\(apr_build.*=\).*$$,\1$(installbuilddir),' < build/apr_rules.mk > $@ -install: $(TARGET_LIB) apr-config.out build/apr_rules.out +install: $(TARGETS) $(APR_MKDIR) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(installbuilddir) \ $(DESTDIR)$(libdir)/pkgconfig $(DESTDIR)$(includedir) $(INSTALL_DATA) $(top_blddir)/include/apr.h $(DESTDIR)$(includedir) |