diff --git a/src/peigs/GNUmakefile b/src/peigs/GNUmakefile index 4c9174d051..ddcb8a9b5a 100644 --- a/src/peigs/GNUmakefile +++ b/src/peigs/GNUmakefile @@ -45,12 +45,14 @@ sngl_to_dbl dbl_to_sngl: (cd ./src/f77; $(MAKE) 64_to_32) (cd ./comm; $(MAKE) 64_to_32) (cd ./ctof; $(MAKE) 64_to_32) + (cd ./h; $(MAKE) 64_to_32) 32_to_64: (cd ./src/c; $(MAKE) 32_to_64) (cd ./src/f77; $(MAKE) 32_to_64) (cd ./comm; $(MAKE) 32_to_64) (cd ./ctof; $(MAKE) 32_to_64) + (cd ./h; $(MAKE) 32_to_64) depend: @echo No dependencies in include diff --git a/src/peigs/h/GNUmakefile b/src/peigs/h/GNUmakefile new file mode 100644 index 0000000000..c30bc714c0 --- /dev/null +++ b/src/peigs/h/GNUmakefile @@ -0,0 +1,12 @@ +## $Id$ + +include ../../config/makefile.h +include ../DEFS + + CNFDIR := $(NWCHEM_TOP)/src/config +.PHONY: 64_to_32 32_to_64 +64_to_32: + $(CNFDIR)/64_to_32 blas_lapack.h peigs_types.h + +32_to_64: + $(CNFDIR)/32_to_64 blas_lapack.h peigs_types.h