e2fsprogs/Makefile.in

127 lines
3.5 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@
@RESIZER_CMT@RESIZE_DIR= resize
@DEBUGFS_CMT@DEBUGFS_DIR= debugfs
LIB_SUBDIRS=lib/et lib/ss lib/e2p lib/ext2fs lib/uuid lib/blkid intl
PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po
SUBDIRS=util $(LIB_SUBDIRS) $(PROG_SUBDIRS) tests
1997-04-26 17:58:21 +04:00
SUBS= lib/ext2fs/ext2_types.h lib/blkid/blkid_types.h lib/uuid/uuid_types.h
1997-04-26 17:58:21 +04:00
1997-04-29 20:15:03 +04:00
TAR=tar
all:: subs
$(MAKE) libs
$(MAKE) progs
$(MAKE) docs
1997-04-29 18:28:00 +04:00
subs:
@for i in $(SUBS) ; do if test -d `dirname $$i` ; then $(MAKE) $$i ; fi ; done
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:
-@test -d doc && cd doc && $(MAKE) libext2fs.info
1997-04-29 20:15:03 +04:00
install-doc-libs:
-@test -d doc && cd doc && $(MAKE) install-doc-libs
1997-04-29 20:15:03 +04:00
uninstall-doc-libs:
-@test -d doc && cd doc && $(MAKE) uninstall-doc-libs
clean-doc:
-@test -d doc && cd doc && $(MAKE) clean
distclean-doc:
-test -d doc && cd doc && $(MAKE) distclean
install: subs 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
if test ! -d e2fsck && test ! -d debugfs && test ! -d misc && test ! -d ext2ed ; then $(MAKE) install-libs ; fi
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 check-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:
@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:
@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
lib/ext2fs/ext2_types.h: $(DEP_SUBSTITUTE) $(srcdir)/lib/ext2fs/ext2_types.h.in
@echo " SUBST $@"
@$(SUBSTITUTE) $(srcdir)/lib/ext2fs/ext2_types.h.in \
> lib/ext2fs/ext2_types.h
1997-04-29 18:28:00 +04:00
lib/blkid/blkid_types.h: $(DEP_SUBSTITUTE) $(srcdir)/lib/blkid/blkid_types.h.in
@echo " SUBST $@"
@$(SUBSTITUTE) $(srcdir)/lib/blkid/blkid_types.h.in \
> lib/blkid/blkid_types.h
lib/uuid/uuid_types.h: $(DEP_SUBSTITUTE) $(srcdir)/lib/uuid/uuid_types.h.in
@echo " SUBST $@"
@$(SUBSTITUTE) $(srcdir)/lib/uuid/uuid_types.h.in \
> lib/uuid/uuid_types.h
1997-04-26 17:58:21 +04:00
mostlyclean-local:
$(RM) -f \#* *~ *.orig core MAKELOG
1997-04-26 17:58:21 +04:00
clean-local: mostlyclean-local
1997-04-26 17:58:21 +04:00
distclean-local: clean-local
$(RM) -f $(SUBS) $(SUBST_CONF) \
config.status config.log config.cache MCONFIG Makefile \
$(srcdir)/TAGS $(srcdir)/Makefile.in.old
1997-04-26 17:58:21 +04:00
realclean-local: distclean-local
$(RM) -f configure
check:: subs check-recursive
1997-04-26 17:58:21 +04:00