# Copyright (C) 2003 CEA/DEN, EDF R&D # # # # File : Makefile.in # Author : Vasily Rusyaev (Open Cascade NN) # Module : doc # $Header: top_srcdir=@top_srcdir@ top_builddir=../.. srcdir=@srcdir@ VPATH=.:@srcdir@ SUBDIRS= tui gui SUBDIRSGUI= gui SUBDIRSTUI= tui @COMMENCE@ usr_docs: @@SETX@; for d in $(SUBDIRSGUI); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done; \ docs: usr_docs dev_docs: @@SETX@; for d in $(SUBDIRSTUI); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done; \ clean: @@SETX@; for d in $(SUBDIRS); do \ if test -d $$d/GEOM; then \ (cd $$d && $(MAKE) $@) || exit 1; \ fi; \ done distclean: clean @@SETX@; for d in $(SUBDIRS); do \ if test -d $$d/GEOM; then \ (cd $$d && $(MAKE) $@) || exit 1; \ fi; \ done install: $(MAKE) docs @@SETX@; for d in $(SUBDIRS); do \ if test -d $$d/GEOM; then \ (cd $$d && $(MAKE) $@); \ fi; \ done uninstall: @@SETX@; for d in $(SUBDIRS); do \ if test -d $$d/GEOM; then \ (cd $$d && $(MAKE) $@) || exit 1; \ fi; \ done; \