1999-10-16 05:37:32 +08:00
|
|
|
# HDF5 Library Doc Makefile(.in)
|
|
|
|
#
|
2002-02-20 05:01:02 +08:00
|
|
|
# Copyright (C) 1997, 2002
|
|
|
|
# National Center for Supercomputing Applications.
|
|
|
|
# All rights reserved.
|
1999-10-16 05:37:32 +08:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# This is the top level makefile of the Doc directory. It mostly just
|
|
|
|
# reinvokes make in the various subdirectories.
|
|
|
|
# You can alternatively invoke make from each subdirectory manually.
|
|
|
|
#
|
|
|
|
top_srcdir=@top_srcdir@
|
|
|
|
top_builddir=..
|
|
|
|
srcdir=@srcdir@
|
|
|
|
@COMMENCE@
|
|
|
|
|
|
|
|
# Subdirectories in build-order
|
|
|
|
SUBDIRS=html
|
|
|
|
|
|
|
|
##===========================================================================
|
|
|
|
lib progs check test _test install uninstall:
|
2001-03-10 06:26:51 +08:00
|
|
|
@echo "Nothing to be done"
|
1999-10-16 05:37:32 +08:00
|
|
|
|
|
|
|
tests TAGS dep depend:
|
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
2002-02-20 05:01:02 +08:00
|
|
|
(cd $$d && $(MAKE) $@) || exit 1; \
|
1999-10-16 05:37:32 +08:00
|
|
|
done
|
|
|
|
|
2001-02-06 04:07:38 +08:00
|
|
|
install-doc:
|
|
|
|
@if test -d $(DOCDIR) ; then \
|
2002-02-20 05:01:02 +08:00
|
|
|
:; \
|
2001-03-10 06:26:51 +08:00
|
|
|
else \
|
2002-02-20 05:01:02 +08:00
|
|
|
mkdir $(DOCDIR) && chmod 755 $(DOCDIR); \
|
2001-02-06 04:07:38 +08:00
|
|
|
fi
|
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
2002-02-20 05:01:02 +08:00
|
|
|
(cd $$d && $(MAKE) $@) || exit 1; \
|
1999-10-16 05:37:32 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
uninstall-doc:
|
2002-02-22 05:10:29 +08:00
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
|
|
|
(cd $$d && $(MAKE) $@) || exit 1; \
|
|
|
|
done
|
1999-10-16 05:37:32 +08:00
|
|
|
|
|
|
|
.PHONY: all lib progs test _test install uninstall dep depend clean \
|
|
|
|
mostlyclean distclean maintainer-clean
|
|
|
|
|
|
|
|
clean mostlyclean:
|
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
2002-02-20 05:01:02 +08:00
|
|
|
(cd $$d && $(MAKE) $@); \
|
1999-10-16 05:37:32 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
distclean:
|
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
2002-02-20 05:01:02 +08:00
|
|
|
(cd $$d && $(MAKE) $@); \
|
1999-10-16 05:37:32 +08:00
|
|
|
done
|
|
|
|
-$(RM) Makefile
|
|
|
|
|
|
|
|
maintainer-clean: distclean
|
|
|
|
@echo "This target is intended for maintainers to use;"
|
|
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
|
|
@@SETX@; for d in $(SUBDIRS); do \
|
2002-02-20 05:01:02 +08:00
|
|
|
(cd $$d && $(MAKE) $@); \
|
1999-10-16 05:37:32 +08:00
|
|
|
done
|
|
|
|
|