mirror of https://gitlab.com/QEF/q-e.git
47 lines
808 B
Makefile
47 lines
808 B
Makefile
# Makefile for PH
|
|
sinclude ../make.inc
|
|
|
|
default: all
|
|
|
|
all: phonon phgamma_only # finite_diffs
|
|
|
|
phonon:
|
|
( cd PH ; $(MAKE) all || exit 1 )
|
|
|
|
ph-lib:
|
|
( cd PH ; $(MAKE) libs-ph || exit 1 )
|
|
|
|
phgamma_only:
|
|
( cd Gamma ; $(MAKE) all || exit 1 )
|
|
|
|
finite_diffs:
|
|
( cd FD ; $(MAKE) all || exit 1 )
|
|
|
|
clean: phonon_clean phgamma_only_clean examples_clean finite_diffs_clean
|
|
|
|
phonon_clean:
|
|
( cd PH ; $(MAKE) clean )
|
|
|
|
phgamma_only_clean:
|
|
( cd Gamma ; $(MAKE) clean )
|
|
|
|
#third_order_q_clean:
|
|
# ( cd D3q ; $(MAKE) clean )
|
|
|
|
finite_diffs_clean:
|
|
( cd FD ; $(MAKE) clean )
|
|
|
|
examples_clean:
|
|
if test -d examples ; then \
|
|
( cd examples ; ./clean_all ) ; fi
|
|
|
|
doc:
|
|
if test -d Doc ; then \
|
|
( cd Doc ; $(MAKE) all || exit 1 ) ; fi
|
|
|
|
doc_clean:
|
|
if test -d Doc ; then \
|
|
(cd Doc ; $(MAKE) clean ) ; fi
|
|
|
|
distclean: clean doc_clean
|