Skip to content
Snippets Groups Projects
Commit 024f0790 authored by Douglas Guptill's avatar Douglas Guptill
Browse files

change 'more' to

parent 25ac1d21
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ distclean: objclean
more-output:
@echo "--"
@echo "compiler output from `pwd`"
@if test -e $(COMPILE_OUT) ; then more $(COMPILE_OUT) ; fi
@if test -e $(COMPILE_OUT) ; then ${PAGER} $(COMPILE_OUT) ; fi
@echo "--"
@echo "$(AR) output from `pwd`"
@if test -e $(LIBFILE).ar ; then more $(LIBFILE).ar ; fi
@if test -e $(LIBFILE).ar ; then ${PAGER} $(LIBFILE).ar ; fi
......@@ -9,6 +9,9 @@ F90 = /usr/local/mpich.pgi.64/bin/mpif90
F77 = /usr/local/mpich.pgi.64/bin/mpif77
CC = /usr/local/mpich.pgi.64/bin/mpicc
# The Makefiles look at compile output with this
PAGER=less
# wsmp lives here.
#
WSMP_DIR = /home/dguptill/software/wsmp/wsmp-Linux/lib/X86_64/PGI
......
......@@ -4,6 +4,9 @@ F90 = mpxlf90_r
F77 = mpxlf_r
CC = mpcc_r
# The Makefiles look at compile output with this
PAGER=more
# wsmp lives here.
#
WSMP_DIR = /home/beaumnt1/software/wsmp/lib/Power4
......
......@@ -27,9 +27,9 @@ distclean: objclean
more-output:
@echo "--"
@echo "compiler output from `pwd`"
@if test -e $(COMPILE_OUT)_f ; then more $(COMPILE_OUT)_f ; fi
@if test -e $(COMPILE_OUT)_c ; then more $(COMPILE_OUT)_c ; fi
@if test -e $(COMPILE_OUT)_f ; then ${PAGER} $(COMPILE_OUT)_f ; fi
@if test -e $(COMPILE_OUT)_c ; then ${PAGER} $(COMPILE_OUT)_c ; fi
@echo "--"
@echo "$(AR) output from `pwd`"
@if test -e $(LIBFILE_f).ar ; then more $(LIBFILE_f).ar ; fi
@if test -e $(LIBFILE_c).ar ; then more $(LIBFILE_c).ar ; fi
@if test -e $(LIBFILE_f).ar ; then ${PAGER} $(LIBFILE_f).ar ; fi
@if test -e $(LIBFILE_c).ar ; then ${PAGER} $(LIBFILE_c).ar ; fi
......@@ -29,7 +29,7 @@ distclean: objclean
more-output:
@echo "--"
@echo "compiler output from `pwd`"
@if test -e $(COMPILE_OUT) ; then more $(COMPILE_OUT) ; fi
@if test -e $(COMPILE_OUT) ; then ${PAGER} $(COMPILE_OUT) ; fi
@echo "--"
@echo "$(AR) output from `pwd`"
@if test -e $(LIBFILE).ar ; then more $(LIBFILE).ar ; fi
@if test -e $(LIBFILE).ar ; then ${PAGER} $(LIBFILE).ar ; fi
......@@ -33,7 +33,7 @@ distclean: objclean
more-output:
@echo "--"
@echo "compiler output from `pwd`"
@if test -e $(COMPILE_OUT) ; then more $(COMPILE_OUT) ; fi
@if test -e $(COMPILE_OUT) ; then ${PAGER} $(COMPILE_OUT) ; fi
@echo "--"
@echo "$(AR) output from `pwd`"
@if test -e $(LIBFILE).ar ; then more $(LIBFILE).ar ; fi
@if test -e $(LIBFILE).ar ; then ${PAGER} $(LIBFILE).ar ; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment