mirror of https://gitlab.com/QEF/q-e.git
55 lines
1.2 KiB
Makefile
55 lines
1.2 KiB
Makefile
# Makefile for simple
|
|
|
|
include ../../make.inc
|
|
LIBMIN = ../minpack/minpacklib.a
|
|
|
|
# location of needed modules
|
|
MODFLAGS= $(BASEMOD_FLAGS) \
|
|
$(MOD_FLAG)../../PW/src $(MOD_FLAG)../pw4gww $(MOD_FLAG)../gww
|
|
|
|
SIMPLEOBJS = \
|
|
stop_pp.o \
|
|
read_export.o \
|
|
openfile_simple.o \
|
|
input_simple.o \
|
|
wfc_basis.o \
|
|
product_basis.o \
|
|
v_product.o \
|
|
epe.o \
|
|
gk_sort_limit.o \
|
|
khamiltonian.o \
|
|
init_us_2_max.o \
|
|
commutator.o
|
|
|
|
|
|
QEMODS = ../../Modules/libqemod.a ../../FFTXlib/libqefft.a \
|
|
../../KS_Solvers/libks_solvers.a \
|
|
../../LAXlib/libqela.a ../../UtilXlib/libutil.a
|
|
|
|
PWOBJS = ../../PW/src/libpw.a
|
|
GWWOBJ = ../gww/libgww.a
|
|
|
|
TLDEPS= pwlibs gwwlib
|
|
|
|
all : tldeps simple.x
|
|
|
|
simple.x : simple.o libsimple.a $(SIMPLEOBJS) $(PWOBJS) $(QEMODS) $(GWWOBJ)
|
|
$(LD) $(LDFLAGS) -o $@ \
|
|
simple.o libsimple.a $(PWOBJS) $(GWWOBJ) $(QEMODS) $(LIBOBJS) $(QELIBS) $(LIBMIN)
|
|
- ( cd ../../bin ; ln -fs ../GWW/simple/$@ . )
|
|
|
|
tldeps :
|
|
if test -n "$(TLDEPS)" ; then ( cd ../.. ; $(MAKE) $(TLDEPS) || exit 1 ) ; fi
|
|
|
|
|
|
libsimple.a : $(SIMPLEOBJS)
|
|
$(AR) $(ARFLAGS) $@ $?
|
|
$(RANLIB) $@
|
|
|
|
clean :
|
|
- /bin/rm -f *.x *.o *~ *.F90 *.d *.mod *.i *.L libsimple.a
|
|
|
|
include make.depend
|
|
# DO NOT DELETE
|
|
|