NWChem/doc/GNUmakefile
Jeff Hammond cf1cd497ef added pdf
2009-07-10 12:51:38 +00:00

22 lines
272 B
Makefile

SUBDIRS = prog user
MAKESUBDIRS = @for dir in $(SUBDIRS); do \
echo Making $@ in $$dir; \
$(MAKE) -C $$dir $@ || exit 1 ; done
all postscript:
$(MAKESUBDIRS)
pdf:
$(MAKESUBDIRS)
html:
$(MAKESUBDIRS)
clean:
$(MAKESUBDIRS)
realclean:
$(MAKESUBDIRS)