mirror of https://gitlab.com/QEF/q-e.git
43 lines
880 B
Makefile
43 lines
880 B
Makefile
# Makefile for DAVID
|
|
|
|
include ../make.inc
|
|
|
|
# location of needed modules and included files (if any)
|
|
MODFLAGS=$(MOD_FLAG).
|
|
|
|
DFLAGS=$$DFLAGMATRIX
|
|
|
|
|
|
UTIL = clocks_handler.o \
|
|
divide.o \
|
|
data_buffer.o \
|
|
error_handler.o \
|
|
find_free_unit.o \
|
|
fletcher32_mod.o \
|
|
mp.o \
|
|
mp_base.o \
|
|
mp_base_gpu.o \
|
|
mp_bands_util.o \
|
|
parallel_include.o \
|
|
util_param.o
|
|
|
|
all : libutil.a
|
|
|
|
|
|
libutil.a: $(UTIL)
|
|
$(AR) $(ARFLAGS) $@ $?
|
|
$(RANLIB) $@
|
|
|
|
clean :
|
|
- /bin/rm -f *.o *.a *.d *.i *~ *_tmp.f90 *.mod *.L *.x
|
|
|
|
# .PHONY forces execution of a rule irrespective of the presence of an
|
|
# updated file with the same name of the rule. In this way, the script
|
|
# that generates version.f90 always runs, updating the version if you
|
|
# execute "svn update". The update_version script takes care of not
|
|
# changing the file if the svn version did not change
|
|
|
|
.PHONY: all clean
|
|
|
|
include make.depend
|