#
# This is the makefile for compiling PETSc. See
# http://www.mcs.anl.gov/petsc/petsc-as/documentation/installation.html for directions on installing PETSc.
# See also conf for additional commands.
#
ALL: all
LOCDIR = ./
DIRS = src include tutorials
CFLAGS =
FFLAGS =
# next line defines PETSC_DIR and PETSC_ARCH if they are not set
include ./${PETSC_ARCH}/conf/petscvariables
include ${PETSC_DIR}/conf/variables
include ${PETSC_DIR}/conf/rules
include ${PETSC_DIR}/conf/test
#
# Basic targets to build PETSc libraries.
# all: builds the c, fortran, and f90 libraries
all:
@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} chkpetsc_dir
-@${OMAKE} all_build PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} 2>&1 | tee ${PETSC_ARCH}/conf/make.log
-@if [ -L make.log ]; then ${RM} make.log; fi; ln -s ${PETSC_ARCH}/conf/make.log make.log
-@egrep -i "( error | error:)" ${PETSC_ARCH}/conf/make.log > /dev/null; if [ "$$?" = "0" ]; then \
echo "********************************************************************" 2>&1 | tee -a ${PETSC_ARCH}/conf/make.log; \
echo " Error during compile, check ${PETSC_ARCH}/conf/make.log" 2>&1 | tee -a ${PETSC_ARCH}/conf/make.log; \
echo " Send it and ${PETSC_ARCH}/conf/configure.log to petsc-maint@mcs.anl.gov" 2>&1 | tee -a ${PETSC_ARCH}/conf/make.log;\
echo "********************************************************************" 2>&1 | tee -a ${PETSC_ARCH}/conf/make.log; \
exit 1; \
else \
${OMAKE} shared_install PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} 2>&1 | tee -a ${PETSC_ARCH}/conf/make.log ;\
fi
#
# Notes: the shared_nomesg and petsc4py should NOT be built if --prefix was used
# the rules for shared_nomesg_noinstall petsc4py_noinstall are generated automatically
# by config/PETSc/Configure.py and config/PETSc/packages/petsc4py.py based on the existance
all_build: chk_petsc_dir chklib_dir info info_h deletelibs deletemods build shared_nomesg_noinstall mpi4py_noinstall petsc4py_noinstall
#
# Prints information about the system and version of PETSc being compiled
#
info:
-@echo "=========================================="
-@echo " "
-@echo "See documentation/faq.html and documentation/bugreporting.html"
-@echo "for help with installation problems. Please send EVERYTHING"
-@echo "printed out below when reporting problems"
-@echo " "
-@echo "To subscribe to the PETSc announcement list, send mail to "
-@echo "majordomo@mcs.anl.gov with the message: "
-@echo "subscribe petsc-announce"
-@echo " "
-@echo "To subscribe to the PETSc users mailing list, send mail to "
-@echo "majordomo@mcs.anl.gov with the message: "
-@echo "subscribe petsc-users"
-@echo " "
-@echo "=========================================="
-@echo On `date` on `hostname`
-@echo Machine characteristics: `uname -a`
-@echo "-----------------------------------------"
-@echo "Using PETSc directory: ${PETSC_DIR}"
-@echo "Using PETSc arch: ${PETSC_ARCH}"
-@echo "-----------------------------------------"
-@grep "define PETSC_VERSION" ${PETSC_DIR}/include/petscversion.h | ${SED} "s/........//"
-@echo "-----------------------------------------"
-@echo "Using configure Options: ${CONFIGURE_OPTIONS}"
-@echo "Using configuration flags:"
-@grep "\#define " ${PETSC_DIR}/${PETSC_ARCH}/include/petscconf.h
-@echo "-----------------------------------------"
-@echo "Using include paths: ${PETSC_INCLUDE}"
-@echo "------------------------------------------"
-@echo "Using C/C++ compiler: ${PCC} ${PCC_FLAGS} ${COPTFLAGS} ${CFLAGS}"
-@echo "C/C++ Compiler version: " `${CCV}`
-@if [ "${FC}" != "" ]; then \
echo "Using Fortran compiler: ${FC} ${FC_FLAGS} ${FFLAGS} ${FPP_FLAGS}";\
echo "Fortran Compiler version: " `${FCV}`;\
fi
-@echo "-----------------------------------------"
-@echo "Using C/C++ linker: ${PCC_LINKER}"
-@echo "Using C/C++ flags: ${PCC_LINKER_FLAGS}"
-@if [ "${FC}" != "" ]; then \
echo "Using Fortran linker: ${FC_LINKER}";\
echo "Using Fortran flags: ${FC_LINKER_FLAGS}";\
fi
-@echo "-----------------------------------------"
-@echo "Using libraries: ${PETSC_LIB}"
-@echo "------------------------------------------"
-@echo "Using mpiexec: ${MPIEXEC}"
-@echo "=========================================="
#
#
MINFO = ${PETSC_DIR}/${PETSC_ARCH}/include/petscmachineinfo.h
info_h:
-@$(RM) -f ${MINFO} MINFO
-@echo "static const char *petscmachineinfo = \"\__n__\"" >> MINFO
-@echo "\"-----------------------------------------\__n__\"" >> MINFO
-@if [ -f /usr/bin/cygcheck.exe ]; then \
echo "\"Libraries compiled on `date` on `hostname|/usr/bin/dos2unix` \__n__\"" >> MINFO; \
else \
echo "\"Libraries compiled on `date` on `hostname` \__n__\"" >> MINFO; \
fi
-@echo "\"Machine characteristics: `uname -a` \__n__\"" >> MINFO
-@echo "\"Using PETSc directory: ${PETSC_DIR}\__n__\"" >> MINFO
-@echo "\"Using PETSc arch: ${PETSC_ARCH}\__n__\"" >> MINFO
-@echo "\"-----------------------------------------\"; " >> MINFO
-@echo "static const char *petsccompilerinfo = \"\__n__\"" >> MINFO
-@echo "\"Using C compiler: ${PCC} ${PCC_FLAGS} ${COPTFLAGS} ${CFLAGS}\__n__\"" >> MINFO
-@echo "\"Using Fortran compiler: ${FC} ${FC_FLAGS} ${FFLAGS} ${FPP_FLAGS}\__n__\"" >> MINFO
-@echo "\"-----------------------------------------\"; " >> MINFO
-@echo "static const char *petsccompilerflagsinfo = \"\__n__\"" >> MINFO
-@echo "\"Using include paths: ${PETSC_INCLUDE}\__n__\"" >> MINFO
-@echo "\"------------------------------------------\"; " >> MINFO
-@echo "static const char *petsclinkerinfo = \"\__n__\"" >> MINFO
-@echo "\"Using C linker: ${CLINKER}\__n__\"" >> MINFO
-@echo "\"Using Fortran linker: ${FLINKER}\__n__\"" >> MINFO
-@echo "\"Using libraries: ${PETSC_LIB} \__n__\"" >> MINFO
-@echo "\"------------------------------------------\"; " >> MINFO
-@cat MINFO | ${SED} -e 's/\\ /\\\\ /g' | ${SED} -e 's/__n__/n/g' > ${MINFO}
-@ if [ -f /usr/bin/cygcheck.exe ]; then /usr/bin/dos2unix ${MINFO} 2> /dev/null; fi
-@$(RM) -f MINFO
#
# Builds the PETSc libraries
# This target also builds fortran77 and f90 interface
# files and compiles .F files
#
build:
-@echo "BEGINNING TO COMPILE LIBRARIES IN ALL DIRECTORIES"
-@echo "========================================="
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=libfast tree
-@${RANLIB} ${PETSC_LIB_DIR}/*.${AR_LIB_SUFFIX} > tmpf 2>&1 ; ${GREP} -v "has no symbols" tmpf; ${RM} tmpf;
-@echo "Completed building libraries"
-@echo "========================================="
#
#
# Builds PETSc test examples for a given architecture
#
test:
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test_build 2>&1 | tee ./${PETSC_ARCH}/conf/test.log
testx11:
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} testx11_build 2>&1 | tee ./${PETSC_ARCH}/conf/testx11.log
test_build:
-@echo "Running test examples to verify correct installation"
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} clean
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} testex19
@if [ "${FC}" != "" ]; then cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} testex5f; fi;
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} clean
-@echo "Completed test examples"
testx11_build:
-@echo "Running graphics test example to verify correct X11 installation"
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} clean
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} testx11ex19
@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} clean
-@echo "Completed graphics test example"
testexamples: info
-@echo "BEGINNING TO COMPILE AND RUN TEST EXAMPLES"
-@echo "Due to different numerical round-off on certain"
-@echo "machines some of the numbers may not match exactly."
-@echo "========================================="
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=testexamples_C tree
-@echo "Completed compiling and running test examples"
-@echo "========================================="
testfortran: info
-@echo "BEGINNING TO COMPILE AND RUN FORTRAN TEST EXAMPLES"
-@echo "========================================="
-@echo "Due to different numerical round-off on certain"
-@echo "machines or the way Fortran formats numbers"
-@echo "some of the results may not match exactly."
-@echo "========================================="
-@if [ "${FC}" != "" ]; then \
${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=testexamples_Fortran tree; \
echo "Completed compiling and running Fortran test examples"; \
else \
echo "Error: No FORTRAN compiler available"; \
fi
-@echo "========================================="
testexamples_uni: info
-@echo "BEGINNING TO COMPILE AND RUN TEST UNI-PROCESSOR EXAMPLES"
-@echo "Due to different numerical round-off on certain"
-@echo "machines some of the numbers may not match exactly."
-@echo "========================================="
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=testexamples_C_X11_MPIUni tree
-@echo "Completed compiling and running uniprocessor test examples"
-@echo "========================================="
testfortran_uni: info
-@echo "BEGINNING TO COMPILE AND RUN TEST UNI-PROCESSOR FORTRAN EXAMPLES"
-@echo "Due to different numerical round-off on certain"
-@echo "machines some of the numbers may not match exactly."
-@echo "========================================="
-@if [ "${FC}" != "" ]; then \
${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=testexamples_Fortran_MPIUni tree; \
echo "Completed compiling and running uniprocessor fortran test examples"; \
else \
echo "Error: No FORTRAN compiler available"; \
fi
-@
-@echo "========================================="
# Ranlib on the libraries
ranlib:
${RANLIB} ${PETSC_LIB_DIR}/*.${AR_LIB_SUFFIX}
# Deletes PETSc libraries
deletelibs:
-${RM} -f ${PETSC_LIB_DIR}/libpetsc*.*
deletemods:
-${RM} -f ${PETSC_DIR}/${PETSC_ARCH}/include/petsc*.mod
# Cleans up build
allclean: deletelibs deletemods
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} ACTION=clean tree
#
# Check if PETSC_DIR variable specified is valid
#
chk_petsc_dir:
@if [ ! -f ${PETSC_DIR}/include/petscversion.h ]; then \
echo "Incorrect PETSC_DIR specified: ${PETSC_DIR}!"; \
echo "You need to use / to separate directories, not \\!"; \
echo "Aborting build"; \
false; fi
#
#
install:
-@./config/install.py
newall:
-@cd src/sys; ${PETSC_DIR}/config/builder.py
-@cd src/vec; ${PETSC_DIR}/config/builder.py
-@cd src/mat; ${PETSC_DIR}/config/builder.py
-@cd src/dm; ${PETSC_DIR}/config/builder.py
-@cd src/ksp; ${PETSC_DIR}/config/builder.py
-@cd src/snes; ${PETSC_DIR}/config/builder.py
-@cd src/ts; ${PETSC_DIR}/config/builder.py
# ------------------------------------------------------------------
#
# All remaining actions are intended for PETSc developers only.
# PETSc users should not generally need to use these commands.
#
# To access the tags in EMACS, type M-x visit-tags-table and specify
# the file petsc/TAGS.
# 1) To move to where a PETSc function is defined, enter M-. and the
# function name.
# 2) To search for a string and move to the first occurrence,
# use M-x tags-search and the string.
# To locate later occurrences, use M-,
# Builds all etags files
alletags:
-@bin/maint/generateetags.py
-@find config -type f -name "*.py" |grep -v SCCS | xargs etags -o TAGS_PYTHON
allfortranstubs:
-@bin/maint/generatefortranstubs.py ${BFORT}
deletefortranstubs:
-@find . -type d -name ftn-auto | xargs rm -rf
#
# These are here for the target allci and allco, and etags
#
BMAKEFILES = conf/variables conf/rules conf/test bmake/adic.init bmake/adicmf.init
SCRIPTS = bin/maint/builddist bin/maint/wwwman bin/maint/xclude bin/maint/bugReport.py bin/maint/buildconfigtest bin/maint/builddistlite \
bin/maint/buildtest bin/maint/checkBuilds.py bin/maint/copylognightly bin/maint/copylognightly.tao bin/maint/countfiles bin/maint/findbadfiles \
bin/maint/fixinclude bin/maint/getexlist bin/maint/getpdflabels.py bin/maint/helpindex.py bin/maint/hosts.local bin/maint/hosts.solaris \
bin/maint/lex.py bin/maint/mapnameslatex.py bin/maint/startnightly bin/maint/startnightly.tao bin/maint/submitPatch.py \
bin/maint/update-docs.py bin/maint/wwwindex.py bin/maint/xcludebackup bin/maint/xcludecblas bin/maint/zap bin/maint/zapall \
config/PETSc/Configure.py config/PETSc/Options.py \
config/PETSc/packages/*.py config/PETSc/utilities/*.py
# Builds all the documentation - should be done every night
alldoc: alldoc1 alldoc2
# Build everything that goes into 'doc' dir except html sources
alldoc1: chk_loc deletemanualpages chk_concepts_dir
-${OMAKE} ACTION=manualpages_buildcite tree_basic LOC=${LOC}
-@sed -e s%man+../%man+manualpages/% ${LOC}/docs/manualpages/manualpages.cit > ${LOC}/docs/manualpages/htmlmap
-@cat ${PETSC_DIR}/src/docs/mpi.www.index >> ${LOC}/docs/manualpages/htmlmap
-cd src/docs/tex/manual; ${OMAKE} manual.pdf LOC=${LOC}
-${OMAKE} ACTION=manualpages tree_basic LOC=${LOC}
-bin/maint/wwwindex.py ${PETSC_DIR} ${LOC}
-${OMAKE} ACTION=manexamples tree_basic LOC=${LOC}
-${OMAKE} manconcepts LOC=${LOC}
-${OMAKE} ACTION=getexlist tree_basic LOC=${LOC}
-${OMAKE} ACTION=exampleconcepts tree_basic LOC=${LOC}
-bin/maint/helpindex.py ${PETSC_DIR} ${LOC}
-grep -h Polymorphic include/*.h | grep -v '#define ' | sed "s?PetscPolymorphic[a-zA-Z]*(??g" | cut -f1 -d"{" > tmppoly
-bin/maint/processpoly.py ${PETSC_DIR} ${LOC}
-${RM} tmppoly
# Builds .html versions of the source
# html overwrites some stuff created by update-docs - hence this is done later.
alldoc2: chk_loc
-${OMAKE} ACTION=html PETSC_DIR=${PETSC_DIR} alltree LOC=${LOC}
-bin/maint/update-docs.py ${PETSC_DIR} ${LOC}
alldocclean: deletemanualpages allcleanhtml
# Deletes man pages (HTML version)
deletemanualpages: chk_loc
-@if [ -d ${LOC} -a -d ${LOC}/docs/manualpages ]; then \
find ${LOC}/docs/manualpages -type f -name "*.html" -exec ${RM} {} \; ;\
${RM} ${LOC}/docs/exampleconcepts ;\
${RM} ${LOC}/docs/manconcepts ;\
${RM} ${LOC}/docs/manualpages/manualpages.cit ;\
bin/maint/update-docs.py ${PETSC_DIR} ${LOC} clean;\
fi
allcleanhtml:
-${RM} include/adic/*.h.html
-${OMAKE} ACTION=cleanhtml PETSC_DIR=${PETSC_DIR} alltree
chk_concepts_dir: chk_loc
@if [ ! -d "${LOC}/docs/manualpages/concepts" ]; then \
echo Making directory ${LOC}/docs/manualpages/concepts for library; ${MKDIR} ${LOC}/docs/manualpages/concepts; fi
###########################################################
# targets to build distribution and update docs
###########################################################
# Creates ${HOME}/petsc.tar.gz [and petsc-lite.tar.gz]
dist:
${PETSC_DIR}/bin/maint/builddist ${PETSC_DIR}
# This target works only if you can do 'ssh petsc@harley.mcs.anl.gov'
# also copy the file over to ftp site.
web-snapshot:
@if [ ! -f "${HOME}/petsc-dev.tar.gz" ]; then \
echo "~/petsc-dev.tar.gz missing! cannot update petsc-dev snapshot on mcs-web-site"; \
else \
echo "updating petsc-dev snapshot on mcs-web-site"; \
tmpdir=`mktemp -d -t petsc-doc.XXXXXXXX`; \
cd $${tmpdir}; tar -xzf ${HOME}/petsc-dev.tar.gz; \
/usr/bin/rsync -e ssh -az --delete $${tmpdir}/petsc-dev/ \
petsc@harley.mcs.anl.gov:/mcs/web/research/projects/petsc/petsc-as/snapshots/petsc-dev ;\
/bin/cp -f /home/petsc/petsc-dev.tar.gz /mcs/ftp/pub/petsc/petsc-dev.tar.gz;\
${RM} -rf $${tmpdir} ;\
fi
# build the tarfile - and then update petsc-dev snapshot on mcs-web-site
update-web-snapshot: dist web-snapshot
# This target updates website main pages
update-web:
@cd ${PETSC_DIR}/src/docs; make PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} bib2html; \
/usr/bin/rsync -az -C --exclude=BitKeeper --exclude=documentation/installation.html \
${PETSC_DIR}/src/docs/website/ petsc@harley.mcs.anl.gov:/mcs/web/research/projects/petsc/petsc-as
@cd ${PETSC_DIR}/src/docs/tex/manual; make developers.pdf PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} LOC=${PETSC_DIR}; \
/usr/bin/rsync -az developers.pdf petsc@harley.mcs.anl.gov:/mcs/web/research/projects/petsc/petsc-as/developers/
#
# builds a single list of files for each PETSc library so they may all be built in parallel
# without a recursive set of make calls
createfastbuild:
cd src/vec; ${RM} -f files; /bin/echo -n "SOURCEC = " > files; make tree ACTION=sourcelist BASE_DIR=${PETSC_DIR}/src/vec; /bin/echo -n "OBJSC = $${SOURCEC:.c=.o} " >> files
###########################################################
#
# See script for details
#
gcov:
-@${PETSC_DIR}/bin/maint/gcov.py -run_gcov
mergegcov:
-@${PETSC_DIR}/bin/maint/gcov.py -merge_gcov ${LOC} *.tar.gz
# usage make allrcslabel NEW_RCS_LABEL=v_2_0_28
allrcslabel:
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} NEW_RCS_LABEL=${NEW_RCS_LABEL} ACTION=rcslabel alltree
#
# The commands below are for generating ADIC versions of the code;
# they are not currently used.
#
alladicignore:
-@${RM} ${INSTALL_LIB_DIR}/adicignore
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} ACTION=adicignore tree
alladic:
-@echo "Beginning to compile ADIC source code in all directories"
-@echo "Using ADIC compiler: ${ADIC_CC} ${CCPPFLAGS}"
-@echo "========================================="
-@cd include ; \
${ADIC_CC} -s -f 1 ${CCPPFLAGS} petscsys.h
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} ACTION=adic tree
alladiclib:
-@echo "Beginning to compile ADIC libraries in all directories"
-@echo "Using compiler: ${PCC} ${COPTFLAGS}"
-@echo "-----------------------------------------"
-@echo "Using PETSc flags: ${PETSCFLAGS} ${PCONF}"
-@echo "-----------------------------------------"
-@echo "Using configuration flags:"
-@grep "define " ${PETSC_ARCH}/include/petscconf.h
-@echo "-----------------------------------------"
-@echo "Using include paths: ${PETSC_INCLUDE}"
-@echo "-----------------------------------------"
-@echo "Using PETSc directory: ${PETSC_DIR}"
-@echo "Using PETSc arch: ${PETSC_ARCH}"
-@echo "========================================="
-@${RM} -f ${INSTALL_LIB_DIR}/*adic.${AR_LIB_SUFFIX}
-@${OMAKE} PETSC_ARCH=${PETSC_ARCH} ACTION=adiclib tree
-@cd src/adic/src ; \
${OMAKE} PETSC_ARCH=${PETSC_ARCH} lib
# -------------------------------------------------------------------------------
#
# Some macros to check if the fortran interface is up-to-date.
#
countfortranfunctions:
-@cd ${PETSC_DIR}/src/fortran; egrep '^void' custom/*.c auto/*.c | \
cut -d'(' -f1 | tr -s ' ' | cut -d' ' -f2 | uniq | egrep -v "(^$$|Petsc)" | \
sed "s/_$$//" | sort > /tmp/countfortranfunctions
countcfunctions:
-@grep extern ${PETSC_DIR}/include/*.h | grep "(" | tr -s ' ' | \
cut -d'(' -f1 | cut -d' ' -f3 | grep -v "\*" | tr -s '\012' | \
tr 'A-Z' 'a-z' | sort > /tmp/countcfunctions
difffortranfunctions: countfortranfunctions countcfunctions
-@echo -------------- Functions missing in the fortran interface ---------------------
-@${DIFF} /tmp/countcfunctions /tmp/countfortranfunctions | grep "^<" | cut -d' ' -f2
-@echo ----------------- Functions missing in the C interface ------------------------
-@${DIFF} /tmp/countcfunctions /tmp/countfortranfunctions | grep "^>" | cut -d' ' -f2
-@${RM} /tmp/countcfunctions /tmp/countfortranfunctions
checkbadfortranstubs:
-@echo "========================================="
-@echo "Functions with MPI_Comm as an Argument"
-@echo "========================================="
-@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'MPI_Comm' | \
tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3
-@echo "========================================="
-@echo "Functions with a String as an Argument"
-@echo "========================================="
-@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'char \*' | \
tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3
-@echo "========================================="
-@echo "Functions with Pointers to PETSc Objects as Argument"
-@echo "========================================="
-@cd ${PETSC_DIR}/src/fortran/auto; \
_p_OBJ=`grep _p_ ${PETSC_DIR}/include/*.h | tr -s ' ' | \
cut -d' ' -f 3 | tr -s '\012' | grep -v '{' | cut -d'*' -f1 | \
sed "s/_p_//g" | tr -s '\012 ' ' *|' ` ; \
for OBJ in $$_p_OBJ; do \
grep "$$OBJ \*" *.c | tr -s ' ' | tr -s ':' ' ' | \
cut -d'(' -f1 | cut -d' ' -f1,3; \
done
#
# Automatically generates PETSc exercises in html from the tutorial examples.
#
# The introduction for each section is obtained from docs/manualpages/header_${MANSEC} is under RCS and may be edited
# (used also in introductions to the manual pages)
# The overall introduction is in docs/exercises/introduction.html and is under RCS and may be edited
# The list of exercises is from TUTORIALS in each directory's makefile
#
# DO NOT EDIT the pageform.txt or *.htm files generated since they will be automatically replaced.
# The pagemaker rule is in the file conf (at the bottom)
#
# Eventually the line below will replace the two cd in the rule below, it is just this way now for speed
# -@${OMAKE} PETSC_DIR=${PETSC_DIR} pagemaker
#
exercises:
-@echo "========================================="
-@echo "Generating HTML tutorial exercises"
-@${RM} docs/pageform.txt
-@echo "title=\"PETSc Exercises\"" > docs/pageform.txt
-@echo "access_title=Exercise Sections" >> docs/pageform.txt
-@echo "access_format=short" >> docs/pageform.txt
-@echo "startpage=../exercises/introduction.htm" >> docs/pageform.txt
-@echo "NONE title=\"Introduction\" command=link src=../exercises/introduction.htm" >> docs/pageform.txt
-@echo "Generating HTML for individual directories"
-@echo "========================================="
-@${OMAKE} PETSC_DIR=${PETSC_DIR} ACTION=pagemaker tree
-@echo "Completed HTML for individual directories"
-@echo "NONE title=\"<HR>\" " >> docs/pageform.txt;
-@echo "NONE title=\"PETSc Documentation\" command=link src=../index.html target=replace" >> docs/pageform.txt
/home/MPI/class/mpiexmpl/maint/makepage.new -pageform=docs/pageform.txt -access_extra=/dev/null -outdir=docs/exercises
-@echo "========================================="
.PHONY: info info_h all all_build build testexamples testfortran testexamples_uni testfortran_uni ranlib deletelibs allclean update chk_petsc_dir \
alletags etags etags_complete etags_noexamples etags_makefiles etags_examples etags_fexamples alldoc allmanualpages \
allhtml allcleanhtml allci allco allrcslabel alladicignore alladic alladiclib countfortranfunctions \
start_configure configure_petsc configure_clean
getsigs:
-@if [ ! -d src/sigs ]; then mkdir -p sigs; fi
-@echo ${PETSC_INCLUDE} > sigs/petsc_include
-@echo "#include \"petscvec.h\"" > sigs/vec.sigs.h
-@grep -h "enum " include/petscsys.h include/petscvec.h >> sigs/vec.sigs.h
-@grep " Vec[a-zA-Z][a-zA-Z]*(Vec," include/petscvec.h | grep EXTERN | grep -v "(\*)" | grep -v IS |grep -v VecType | sed "s/EXTERN PetscErrorCode PETSCVEC_DLLEXPORT//g" >> sigs/vec.sigs.h
-@echo "#include \"petscmat.h\"" > sigs/mat.sigs.h
-@grep "enum " include/petscmat.h | grep } >> sigs/mat.sigs.h
-@grep " Mat[a-zA-Z][a-zA-Z]*(Mat," include/petscmat.h | grep EXTERN | grep -v "(\*)" | grep -v IS |grep -v MatType | sed "s/EXTERN PetscErrorCode PETSCMAT_DLLEXPORT//g" >> sigs/mat.sigs.h
-@echo "#include \"petscpc.h\"" > sigs/pc.sigs.h
-@grep "enum " include/petscpc.h | grep } >> sigs/pc.sigs.h
-@grep " PC[a-zA-Z][a-zA-Z]*(PC," include/petscpc.h | grep EXTERN | grep -v "(\*)" | grep -v "(\*\*)" | grep -v IS |grep -v PCType | sed "s/EXTERN PetscErrorCode PETSCKSP_DLLEXPORT//g" >> sigs/pc.sigs.h
-@echo "#include \"petscksp.h\"" > sigs/ksp.sigs.h
-@grep "enum " include/petscksp.h | grep } >> sigs/ksp.sigs.h
-@grep " KSP[a-zA-Z][a-zA-Z]*(KSP," include/petscksp.h | grep EXTERN | grep -v "(\*)" | grep -v "(\*\*)" | grep -v IS |grep -v KSPType | sed "s/EXTERN PetscErrorCode PETSCKSP_DLLEXPORT//g" >> sigs/ksp.sigs.h
-@echo "#include \"petscsnes.h\"" > sigs/snes.sigs.h
-@grep " SNES[a-zA-Z][a-zA-Z]*(SNES," include/petscsnes.h | grep EXTERN | grep -v "(\*)" | grep -v "(\*\*)" | grep -v IS |grep -v SNESType | sed "s/EXTERN PetscErrorCode PETSCSNES_DLLEXPORT//g" >> sigs/snes.sigs.h
petscao : petscmat petscao.f90.h
petscda : petscksp petscda.f90.h
petscdraw : petsc petscdraw.f90.h
petscis : petsc petscis.f90.h
petscksp : petscpc petscksp.f90.h
petsclog : petsc petsclog.f90.h
petscmat : petscvec petscmat.f90.h
petscmg : petscksp petscmg.f90.h
petscpc : petscmat petscpc.f90.h
petscsnes : petscksp petscsnes.f90.h
petscsys : petsc petscsys.f90.h
petscts : petscsnes petscts.f90.h
petsc : petsc.f90.h
petscvec : petscis petscvec.f90.h
petscviewer : petsc petscviewer.f90.h
petscmesh : petsc petscmesh.f90.h
modules : petscao petscda petscdraw petscis petscksp petsclog petscmat petscmg petscpc petscsnes petscsys petscts petsc petscvec petscviewer petscmesh