mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-21 06:25:21 -04:00
22 lines
272 B
Makefile
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)
|