e2fsprogs/Makefile.in

136 lines
4.0 KiB
Makefile
Raw Normal View History

1997-04-26 17:58:21 +04:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
top_builddir = .
1997-04-29 18:51:31 +04:00
my_dir = .
1997-04-26 17:58:21 +04:00
INSTALL = @INSTALL@
@MCONFIG@
1997-04-29 18:51:31 +04:00
LIB_SUBDIRS=lib/et lib/ss lib/ext2fs lib/e2p lib/uuid
PROG_SUBDIRS=e2fsck debugfs misc resize tests/progs
SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests
1997-04-26 17:58:21 +04:00
SUBS= include/asm/types.h
1997-04-26 17:58:21 +04:00
1997-04-29 20:15:03 +04:00
TAR=tar
all:: $(SUBS) libs progs docs
1997-04-29 18:28:00 +04:00
progs: $(SUBS) all-progs-recursive
libs: $(SUBS) all-libs-recursive
1997-04-26 17:58:21 +04:00
1997-04-29 20:15:03 +04:00
docs:
(cd doc && make libext2fs.info)
1997-04-29 20:15:03 +04:00
install-doc-libs:
(cd doc && make install-doc-libs)
1997-04-29 20:15:03 +04:00
uninstall-doc-libs:
(cd doc && make uninstall-doc-libs)
clean-doc:
(cd doc && make clean)
distclean-doc:
(cd doc && make distclean)
1997-04-26 17:58:21 +04:00
install: all-libs-recursive install-progs-recursive \
1997-04-29 20:15:03 +04:00
install-shlibs-libs-recursive install-doc-libs
# (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages)
1997-04-26 17:58:21 +04:00
uninstall: uninstall-progs-recursive uninstall-shlibs-libs-recursive uninstall-doc-libs
1997-04-26 17:58:21 +04:00
install-libs: install-libs-recursive
uninstall-libs: uninstall-libs-recursive
TAGS clean-recursive distclean-recursive depend-recursive \
1997-04-26 17:58:21 +04:00
mostlyclean-recursive realclean-recursive install-recursive:
for subdir in $(SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-recursive//'`; \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
fi ; \
1997-04-26 17:58:21 +04:00
done
all-progs-recursive install-progs-recursive uninstall-progs-recursive:
1997-04-26 17:58:21 +04:00
for subdir in $(PROG_SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-progs-recursive//'`; \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
fi ; \
1997-04-26 17:58:21 +04:00
done
all-libs-recursive install-libs-recursive uninstall-libs-recursive install-shlibs-libs-recursive uninstall-shlibs-libs-recursive:
1997-04-26 17:58:21 +04:00
for subdir in $(LIB_SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-libs-recursive//'`; \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
fi ; \
1997-04-26 17:58:21 +04:00
done
mostlyclean: mostlyclean-recursive mostlyclean-local
1997-04-29 18:28:00 +04:00
clean: clean-recursive clean-local clean-doc
1997-04-29 18:28:00 +04:00
$(RM) -f $(SUBS)
distclean: distclean-doc distclean-recursive distclean-local
1997-04-29 18:28:00 +04:00
1997-04-26 17:58:21 +04:00
realclean: realclean-recursive realclean-local
depend:: depend-recursive
include/asm/types.h: $(DEP_SUBSTITUTE) $(srcdir)/include/asm/types.h.in
$(SUBSTITUTE) $(srcdir)/include/asm/types.h.in \
> include/asm/types.h
1997-04-29 18:28:00 +04:00
1997-04-26 17:58:21 +04:00
mostlyclean-local:
$(RM) -f \#* *~ core MAKELOG
clean-local: mostlyclean-local
distclean-local: clean-local
$(RM) -f include/asm/types.h $(SUBST_CONF)
1997-04-26 17:58:21 +04:00
$(RM) -f config.status config.log config.cache MCONFIG Makefile
realclean-local: distclean-local
$(RM) -f configure
check:
(cd tests; make check)
1997-04-26 18:37:06 +04:00
distribution_tar_file:
$(RM) -rf /tmp/dest
1997-04-26 18:37:06 +04:00
make DESTDIR=/tmp/dest install
cd ..
cp -r $(srcdir)/README $(srcdir)/install-utils /tmp/dest
$(RM) -rf /tmp/dest/install-utils/CVS /tmp/dest/install-utils/ChangeLog
1997-04-26 18:37:06 +04:00
cp $(srcdir)/INSTALL.@BINARY_TYPE@ /tmp/dest/INSTALL
1997-04-29 20:15:03 +04:00
(cd /tmp/dest; $(TAR) cf - . ) | gzip -9 \
1997-04-26 18:37:06 +04:00
> e2fsprogs-@E2FSPROGS_VERSION@-@BINARY_TYPE@.tar.gz
1997-04-29 21:39:27 +04:00
SRCROOT = `echo e2fsprogs-@E2FSPROGS_VERSION@ | sed -e 's/-WIP//' \
-e 's/pre-//' -e 's/-PLUS//'`
1997-04-29 18:51:31 +04:00
$(srcdir)/.exclude-file:
a=$(SRCROOT); \
(cd $(srcdir)/.. ; find e2fsprogs \( -name \*~ -o -name \*.orig \
-o -name CVS -o -name \*.rej -o -name Makefile.pq \
-o -name TODO -o -name changed-files -o -name .#\* \) \
-print) | sed -e "s/e2fsprogs/$$a/" > $(srcdir)/.exclude-file
1997-04-29 18:51:31 +04:00
echo "$(SRCROOT)/build" >> $(srcdir)/.exclude-file
1997-04-29 20:15:03 +04:00
echo "$(SRCROOT)/rpm.log" >> $(srcdir)/.exclude-file
echo "$(SRCROOT)/resize" >> $(srcdir)/.exclude-file
echo "$(SRCROOT)/powerquest" >> $(srcdir)/.exclude-file
1997-04-29 18:51:31 +04:00
echo "$(SRCROOT)/.exclude-file" >> $(srcdir)/.exclude-file
echo $(SRCROOT)/e2fsprogs-@E2FSPROGS_VERSION@.tar.gz \
>> $(srcdir)/.exclude-file
1997-04-29 18:51:31 +04:00
source_tar_file: $(srcdir)/.exclude-file
(cd $(srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \
$(TAR) -c -h -v -f - \
-X $$a/.exclude-file $$a | \
1997-04-29 18:51:31 +04:00
gzip -9 > e2fsprogs-@E2FSPROGS_VERSION@.tar.gz)
rm -f $(srcdir)/.exclude-file