/usr/share/nwchem/libraryps/GNUmakefile is in nwchem-data 6.3+r1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #
# $Id: GNUmakefile 19707 2010-10-29 17:59:36Z d3y133 $
#
OBJ_OPTIMIZE = nwpw_library.o nwpw_libfile.o nwpw_set_library.o
OBJ =
LIBRARY = libnwpwlib.a
USES_BLAS =
LONGNWTOP = $(shell if [ `echo $(SRCDIR) |wc -m` -gt 64 ]; then echo "Y"; fi )
ifeq ($(LONGNWTOP),Y)
errorlongpwd:
@echo " "
@echo "The directory name chosen for NWCHEM_TOP is longer than "
@echo "the maximum allowed value of 65 characters"
@echo " current NWCHEM_TOP="$(SRCDIR)" equal to" $(shell echo $(BSRCDIR) |wc -m) "characters"
@echo "please chose a directory with a shorter name"
@echo "E.g., setenv NWCHEM_TOP /home/nwchem_user/nwchem"
@exit 1
endif
LIB_DEFINES = -DNWPW_LIBRARY="'/usr/share/nwchem/libraryps/'"
LIB_INCLUDES =
include ../../config/makefile.h
include ../../config/makelib.h
|