summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>1998-04-03 16:12:25 +0000
committerTheodore Ts'o <tytso@mit.edu>1998-04-03 16:12:25 +0000
commita4b2d3ce5eb85baa959a3cc19df9569f2b412935 (patch)
treed4cef6b55379f2f4307a1ee085eae51025c22363 /Makefile.in
parentd171c5b5ee86f87f028fe62d684659f249b9e334 (diff)
downloade2fsprogs-a4b2d3ce5eb85baa959a3cc19df9569f2b412935.tar.gz
Many files:
configure.in: Change how the installation directions are selected. Previously, we had prefix and usr_prefix, where prefix was '' and usr_prefix was /usr, and we then defined bindir, ubindir, libdir, ulibdir, etc. in terms of that. In autoconf 2.12, it's possible to override bindir, libdir, etc., and so in order to make our installation directory makefile variables more in line with autoconf 2.12, I've changed all of the various makefiles to use prefix and root_prefix, where the default Linux definitions are /usr and '', respectively. What used to be bindir is now root_bindir, and what used to be ubindir, is now bindir. MCONFIG.in: Change directories to match with new installation directory convention (see above). Add Makefile dependencies for makefile fragments, and define DEP_LIB_MAKEFILES which library makefiles can use to define DEP_MAKEFILES, so that the library makefiles will get regenerated when the makefile fragments change. Remove the cat?dir variables, since we aren't creating those directories any more. Makefile.in: Add top-level uninstall targets. e2fsprogs-1.12.spec: Add to the RPM package the e2label man page, and to reflect that fact that we now compile_et and mk_cmds for the development package. ChangeLog, Makefile.in: Makefile.in: Add uninstall target (which is a just a no-op). version.h, RELEASE-NOTES: Update to interim version numbers for release purposes.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index f235517e..cbb17bb8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -26,12 +26,19 @@ docs:
install-doc-libs:
(cd doc && make install-doc-libs)
+uninstall-doc-libs:
+ (cd doc && make uninstall-doc-libs)
+
install: all-libs-recursive install-progs-recursive \
install-shlibs-libs-recursive install-doc-libs
# (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages)
+uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
+
install-libs: install-libs-recursive
+uninstall-libs: uninstall-libs-recursive
+
TAGS clean-recursive distclean-recursive \
mostlyclean-recursive realclean-recursive install-recursive:
for subdir in $(SUBDIRS); do \
@@ -42,7 +49,7 @@ TAGS clean-recursive distclean-recursive \
fi ; \
done
-all-progs-recursive install-progs-recursive:
+all-progs-recursive install-progs-recursive uninstall-progs-recursive:
for subdir in $(PROG_SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-progs-recursive//'`; \
@@ -51,7 +58,7 @@ all-progs-recursive install-progs-recursive:
fi ; \
done
-all-libs-recursive install-libs-recursive install-shlibs-libs-recursive:
+all-libs-recursive install-libs-recursive uninstall-libs-recursive install-shlibs-libs-recursive uninstall-shlibs-libs-recursive:
for subdir in $(LIB_SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-libs-recursive//'`; \