xref: /petsc/makefile (revision dc0529c63d8e3342815040bcbefdc86110d98240)
1753a1a87SJed Brown#
2753a1a87SJed Brown# This is the makefile for compiling PETSc. See
3753a1a87SJed Brown# http://www.mcs.anl.gov/petsc/documentation/installation.html for directions on installing PETSc.
4753a1a87SJed Brown# See also conf for additional commands.
5753a1a87SJed Brown#
6753a1a87SJed BrownALL: all
7753a1a87SJed BrownLOCDIR	 = ./
8fb3ce96aSSatish BalayDIRS	 = src include tutorials interfaces share/petsc/matlab
9753a1a87SJed BrownCFLAGS	 =
10753a1a87SJed BrownFFLAGS	 =
11d4f3a1abSSatish BalayCPPFLAGS =
12d4f3a1abSSatish BalayFPPFLAGS =
13753a1a87SJed Brown
14753a1a87SJed Brown# next line defines PETSC_DIR and PETSC_ARCH if they are not set
15af0996ceSBarry Smithinclude ././${PETSC_ARCH}/lib/petsc/conf/petscvariables
16af0996ceSBarry Smithinclude ${PETSC_DIR}/lib/petsc/conf/variables
17af0996ceSBarry Smithinclude ${PETSC_DIR}/lib/petsc/conf/rules
18e8666488SSatish Balayinclude ${PETSC_DIR}/lib/petsc/conf/test.common
19753a1a87SJed Brown
20fa2665b1SJed Brown# This makefile contains a lot of PHONY targets with improperly specified prerequisites
21fa2665b1SJed Brown# where correct execution instead depends on the targets being processed in the correct
22fa2665b1SJed Brown# order.  This is gross, but this makefile doesn't really do any work.  Sub-makes still
23fa2665b1SJed Brown# benefit from parallelism.
24fa2665b1SJed Brown.NOTPARALLEL:
25fa2665b1SJed Brown
26753a1a87SJed Brown#
27753a1a87SJed Brown# Basic targets to build PETSc libraries.
28*dc0529c6SBarry Smith#
29dd8585cdSJed Brownall:
30dd8585cdSJed Brown	+@${OMAKE}  PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} chk_petscdir chk_upgrade | tee ${PETSC_ARCH}/lib/petsc/conf/make.log
31af0996ceSBarry Smith	@ln -sf ${PETSC_ARCH}/lib/petsc/conf/make.log make.log
32*dc0529c6SBarry Smith	+@${OMAKE_PRINTDIR} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} all-local 2>&1 | tee -a ${PETSC_ARCH}/lib/petsc/conf/make.log;
33af0996ceSBarry Smith	@egrep -i "( error | error: |no such file or directory)" ${PETSC_ARCH}/lib/petsc/conf/make.log | tee ${PETSC_ARCH}/lib/petsc/conf/error.log > /dev/null
34dd8585cdSJed Brown	+@if test -s ${PETSC_ARCH}/lib/petsc/conf/error.log; then \
35af0996ceSBarry Smith           printf ${PETSC_TEXT_HILIGHT}"**************************ERROR*************************************\n" 2>&1 | tee -a ${PETSC_ARCH}/lib/petsc/conf/make.log; \
36af0996ceSBarry Smith           echo "  Error during compile, check ${PETSC_ARCH}/lib/petsc/conf/make.log" 2>&1 | tee -a ${PETSC_ARCH}/lib/petsc/conf/make.log; \
37af0996ceSBarry Smith           echo "  Send it and ${PETSC_ARCH}/lib/petsc/conf/configure.log to petsc-maint@mcs.anl.gov" 2>&1 | tee -a ${PETSC_ARCH}/lib/petsc/conf/make.log;\
38af0996ceSBarry Smith           printf "********************************************************************"${PETSC_TEXT_NORMAL}"\n" 2>&1 | tee -a ${PETSC_ARCH}/lib/petsc/conf/make.log;\
39753a1a87SJed Brown        fi #solaris make likes to print the whole command that gave error. So split this up into the smallest chunk below
404dcdf380SSatish Balay	@echo "Finishing make run at `date +'%a, %d %b %Y %H:%M:%S %z'`" >> ${PETSC_ARCH}/lib/petsc/conf/make.log
41af0996ceSBarry Smith	@if test -s ${PETSC_ARCH}/lib/petsc/conf/error.log; then exit 1; fi
42753a1a87SJed Brown
43*dc0529c6SBarry Smithall-local: info libs matlabbin mpi4py-build petsc4py-build libmesh-build slepc-build mfem-build
44fa2665b1SJed Brown
45753a1a87SJed Brown#
46753a1a87SJed Brown# Prints information about the system and version of PETSc being compiled
47753a1a87SJed Brown#
48dd8585cdSJed Browninfo:
49753a1a87SJed Brown	-@echo "=========================================="
50753a1a87SJed Brown	-@echo " "
51753a1a87SJed Brown	-@echo "See documentation/faq.html and documentation/bugreporting.html"
52753a1a87SJed Brown	-@echo "for help with installation problems.  Please send EVERYTHING"
53bc10b077SJed Brown	-@echo "printed out below when reporting problems.  Please check the"
54bc10b077SJed Brown	-@echo "mailing list archives and consider subscribing."
55753a1a87SJed Brown	-@echo " "
56bc10b077SJed Brown	-@echo "  http://www.mcs.anl.gov/petsc/miscellaneous/mailing-lists.html"
57753a1a87SJed Brown	-@echo " "
58753a1a87SJed Brown	-@echo "=========================================="
594dcdf380SSatish Balay	-@echo Starting make run on `hostname` at `date +'%a, %d %b %Y %H:%M:%S %z'`
60753a1a87SJed Brown	-@echo Machine characteristics: `uname -a`
61753a1a87SJed Brown	-@echo "-----------------------------------------"
62753a1a87SJed Brown	-@echo "Using PETSc directory: ${PETSC_DIR}"
63753a1a87SJed Brown	-@echo "Using PETSc arch: ${PETSC_ARCH}"
64753a1a87SJed Brown	-@echo "-----------------------------------------"
65753a1a87SJed Brown	-@grep "define PETSC_VERSION" ${PETSC_DIR}/include/petscversion.h | ${SED} "s/........//"
66753a1a87SJed Brown	-@echo "-----------------------------------------"
67753a1a87SJed Brown	-@echo "Using configure Options: ${CONFIGURE_OPTIONS}"
68753a1a87SJed Brown	-@echo "Using configuration flags:"
697cab4194SSatish Balay	-@grep "\#define " ${PETSCCONF_H}
70753a1a87SJed Brown	-@echo "-----------------------------------------"
717c934407SBarry Smith	-@echo "Using C compile: ${PETSC_COMPILE}"
727c934407SBarry Smith	-@if [  "${MPICC_SHOW}" != "" ]; then \
73fd0cdb26SSatish Balay             printf  "mpicc -show: %b\n" "${MPICC_SHOW}";\
747c934407SBarry Smith          fi; \
757c934407SBarry Smith          printf  "C compiler version: %b\n" "${C_VERSION}"; \
767c934407SBarry Smith	  if [ "${CXX}" != "" ]; then \
777c934407SBarry Smith	   echo "Using C++ compile: ${PETSC_CXXCOMPILE}";\
787c934407SBarry Smith	    if [ "${MPICXX_SHOW}" != "" ]; then \
79fd0cdb26SSatish Balay               printf "mpicxx -show: %b\n" "${MPICXX_SHOW}"; \
807c934407SBarry Smith            fi;\
817c934407SBarry Smith            printf  "C++ compiler version: %b\n" "${Cxx_VERSION}"; \
827c934407SBarry Smith          fi
83753a1a87SJed Brown	-@if [ "${FC}" != "" ]; then \
84da0b7683SSatish Balay	   echo "Using Fortran compile: ${PETSC_FCOMPILE}";\
85607e78e0SSatish Balay           if [ "${MPIFC_SHOW}" != "" ]; then \
86fd0cdb26SSatish Balay             printf "mpif90 -show: %b\n" "${MPIFC_SHOW}"; \
87607e78e0SSatish Balay           fi; \
887c934407SBarry Smith             printf  "Fortran compiler version: %b\n" "${FC_VERSION}"; \
89da0b7683SSatish Balay         fi
90da0b7683SSatish Balay	-@if [ "${CUDAC}" != "" ]; then \
91da0b7683SSatish Balay	   echo "Using CUDA compile: ${PETSC_CUCOMPILE}";\
92753a1a87SJed Brown         fi
93753a1a87SJed Brown	-@echo "-----------------------------------------"
94753a1a87SJed Brown	-@echo "Using C/C++ linker: ${PCC_LINKER}"
95753a1a87SJed Brown	-@echo "Using C/C++ flags: ${PCC_LINKER_FLAGS}"
96753a1a87SJed Brown	-@if [ "${FC}" != "" ]; then \
97753a1a87SJed Brown	   echo "Using Fortran linker: ${FC_LINKER}";\
98753a1a87SJed Brown	   echo "Using Fortran flags: ${FC_LINKER_FLAGS}";\
99753a1a87SJed Brown         fi
100753a1a87SJed Brown	-@echo "-----------------------------------------"
1011d2d58a3SSatish Balay	-@echo "Using system modules: ${LOADEDMODULES}"
102d1f8d238SSatish Balay	-@if [ "${MPI_IS_MPIUNI}" = "1" ]; then \
103d1f8d238SSatish Balay           echo Using mpi.h: mpiuni; \
104d1f8d238SSatish Balay        else \
105d1f8d238SSatish Balay           TESTDIR=`mktemp -q -d -t petscmpi-XXXXXXXX` && \
10642a47be2SSatish Balay           echo '#include <mpi.h>' > $${TESTDIR}/mpitest.c && \
10742a47be2SSatish Balay           BUF=`${CPP} ${PETSC_CCPPFLAGS} $${TESTDIR}/mpitest.c |grep 'mpi\.h' | ( head -1 ; cat > /dev/null )` && \
108d1f8d238SSatish Balay           echo Using mpi.h: $${BUF}; ${RM} -rf $${TESTDIR}; \
109d1f8d238SSatish Balay        fi
1101d2d58a3SSatish Balay	-@echo "-----------------------------------------"
111753a1a87SJed Brown	-@echo "Using libraries: ${PETSC_LIB}"
112753a1a87SJed Brown	-@echo "------------------------------------------"
113753a1a87SJed Brown	-@echo "Using mpiexec: ${MPIEXEC}"
1144e2e1449SJed Brown	-@echo "------------------------------------------"
115d7e70f41SSatish Balay	-@echo "Using MAKEFLAGS: -j$(MAKE_NP) -l$(MAKE_LOAD) $(MAKEFLAGS)"
116753a1a87SJed Brown	-@echo "=========================================="
117753a1a87SJed Brown
118753a1a87SJed Brown#
119d2b3add8SSatish Balay# Build MatLab binaries
120d2b3add8SSatish Balay#
121d2b3add8SSatish Balaymatlabbin:
1224242cbabSBarry Smith	-@if [ "${MATLAB_MEX}" != "" -a "${MATLAB_SOCKET}" != "" -a "${PETSC_SCALAR}" = "real" -a "${PETSC_PRECISION}" = "double" ]; then \
123d2b3add8SSatish Balay          echo "BEGINNING TO COMPILE MATLAB INTERFACE"; \
124d2b3add8SSatish Balay            if [ ! -d "${PETSC_DIR}/${PETSC_ARCH}/lib/petsc" ] ; then ${MKDIR}  ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc; fi; \
125d2b3add8SSatish Balay            if [ ! -d "${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/matlab" ] ; then ${MKDIR}  ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/matlab; fi; \
126d2b3add8SSatish Balay            cd src/sys/classes/viewer/impls/socket/matlab && ${OMAKE} matlabcodes PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR}; \
127d2b3add8SSatish Balay            echo "========================================="; \
128d2b3add8SSatish Balay        fi
129753a1a87SJed Brown#
130753a1a87SJed Brown# Builds PETSc test examples for a given architecture
131753a1a87SJed Brown#
1323cfc63a1SBarry Smithtest_install: test
13356879a31SBarry Smithcheck: test
134753a1a87SJed Browntest:
13545ee4180SJed Brown	-+@${OMAKE} PATH="${PETSC_DIR}/${PETSC_ARCH}/lib:${PATH}" PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} test_build 2>&1 | tee ./${PETSC_ARCH}/lib/petsc/conf/test.log
136753a1a87SJed Browntestx:
137af0996ceSBarry Smith	-@${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} testx_build 2>&1 | tee ./${PETSC_ARCH}/lib/petsc/conf/testx.log
138753a1a87SJed Browntest_build:
139753a1a87SJed Brown	-@echo "Running test examples to verify correct installation"
140753a1a87SJed Brown	-@echo "Using PETSC_DIR=${PETSC_DIR} and PETSC_ARCH=${PETSC_ARCH}"
14145ee4180SJed Brown	+@cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean
14245ee4180SJed Brown	+@cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} testex19
14345ee4180SJed Brown	+@if [ "${HYPRE_LIB}" != "" ] && [ "${PETSC_WITH_BATCH}" = "" ]; then \
144c3a89c15SBarry Smith          cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} DIFF=${PETSC_DIR}/lib/petsc/bin/petscdiff runex19_hypre; \
145e5d08945SBarry Smith         fi;
14645ee4180SJed Brown	+@if [ "${MUMPS_LIB}" != "" ] && [ "${PETSC_WITH_BATCH}" = "" ]; then \
147c3a89c15SBarry Smith          cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR}  DIFF=${PETSC_DIR}/lib/petsc/bin/petscdiff runex19_fieldsplit_mumps; \
148e5d08945SBarry Smith         fi;
14945ee4180SJed Brown	+@if [ "${SUPERLU_DIST_LIB}" != "" ] && [ "${PETSC_WITH_BATCH}" = "" ]; then \
150c3a89c15SBarry Smith          cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR}  DIFF=${PETSC_DIR}/lib/petsc/bin/petscdiff runex19_superlu_dist; \
151e5d08945SBarry Smith         fi;
15245ee4180SJed Brown	+@if ( [ "${ML_LIB}" != "" ] ||  [ "${TRILINOS_LIB}" != "" ] ) && [ "${PETSC_WITH_BATCH}" = "" ]; then \
153c3a89c15SBarry Smith          cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR}  DIFF=${PETSC_DIR}/lib/petsc/bin/petscdiff runex19_ml; \
154e5d08945SBarry Smith         fi;
15545ee4180SJed Brown	+@cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} ex19.rm
15645ee4180SJed Brown	+@if [ "${PETSC4PY}" = "yes" ]; then \
157b39f6a28SSatish Balay          cd src/ksp/ksp/examples/tutorials >/dev/null; \
158b39f6a28SSatish Balay          ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean; \
159b39f6a28SSatish Balay          ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} testex100; \
160b39f6a28SSatish Balay          ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean; \
1615061939cSBarry Smith         fi;
16245ee4180SJed Brown	+@egrep "^#define PETSC_HAVE_FORTRAN 1" ${PETSCCONF_H} | tee .ftn.log > /dev/null; \
163cb297985SSatish Balay         if test -s .ftn.log; then \
164cb297985SSatish Balay          cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} testex5f; \
165cb297985SSatish Balay         fi; ${RM} .ftn.log;
16645ee4180SJed Brown	+@cd src/snes/examples/tutorials >/dev/null; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean
167753a1a87SJed Brown	-@echo "Completed test examples"
168753a1a87SJed Browntestx_build:
169753a1a87SJed Brown	-@echo "Running graphics test example to verify correct X11 installation"
170753a1a87SJed Brown	-@echo "Using PETSC_DIR=${PETSC_DIR} and PETSC_ARCH=${PETSC_ARCH}"
171227c2ee5SSatish Balay	@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean
172227c2ee5SSatish Balay	@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} testxex19
173227c2ee5SSatish Balay	@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean
174753a1a87SJed Brown	-@echo "Completed graphics test example"
175b752486dSSatish Balaytest_usermakefile:
176b752486dSSatish Balay	-@echo "Testing compile with user makefile"
177b752486dSSatish Balay	-@echo "Using PETSC_DIR=${PETSC_DIR} and PETSC_ARCH=${PETSC_ARCH}"
178b752486dSSatish Balay	@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} -f ${PETSC_DIR}/share/petsc/Makefile.user ex19
179b752486dSSatish Balay	@egrep "^#define PETSC_HAVE_FORTRAN 1" ${PETSCCONF_H} | tee .ftn.log > /dev/null; \
180b752486dSSatish Balay         if test -s .ftn.log; then \
181b752486dSSatish Balay          cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} -f ${PETSC_DIR}/share/petsc/Makefile.user ex5f; \
182b752486dSSatish Balay         fi; ${RM} .ftn.log;
183b752486dSSatish Balay	@cd src/snes/examples/tutorials; ${OMAKE} PETSC_ARCH=${PETSC_ARCH}  PETSC_DIR=${PETSC_DIR} clean
184b752486dSSatish Balay	-@echo "Completed compile with user makefile"
185753a1a87SJed Brown
1863d33ad60SJunchao Zhang# Compare ABI/API of two versions of PETSc library with the old one defined by PETSC_{DIR,ARCH}_ABI_OLD
1873d33ad60SJunchao Zhangabitest:
1883d33ad60SJunchao Zhang	@if [ "${PETSC_DIR_ABI_OLD}" == "" ] || [ "${PETSC_ARCH_ABI_OLD}" == "" ]; \
1893d33ad60SJunchao Zhang		then printf "You must set environment variables PETSC_DIR_ABI_OLD and PETSC_ARCH_ABI_OLD to run abitest\n"; \
1903d33ad60SJunchao Zhang		exit 1; \
1913d33ad60SJunchao Zhang	fi;
1923d33ad60SJunchao Zhang	-@echo "Comparing ABI/API of the following two PETSc versions (you must have already configured and built them using GCC and with -g):"
1933d33ad60SJunchao Zhang	-@echo "========================================================================================="
1943d33ad60SJunchao Zhang	-@echo "    Old: PETSC_DIR_ABI_OLD  = ${PETSC_DIR_ABI_OLD}"
1953d33ad60SJunchao Zhang	-@echo "         PETSC_ARCH_ABI_OLD = ${PETSC_ARCH_ABI_OLD}"
1967b444a09SBarry Smith	-@pushd ${PETSC_DIR_ABI_OLD} >> /dev/null ; echo "         Branch             = "`git rev-parse --abbrev-ref HEAD`
1973d33ad60SJunchao Zhang	-@echo "    New: PETSC_DIR          = ${PETSC_DIR}"
1983d33ad60SJunchao Zhang	-@echo "         PETSC_ARCH         = ${PETSC_ARCH}"
1997b444a09SBarry Smith	-@echo "         Branch             = "`git rev-parse --abbrev-ref HEAD`
2003d33ad60SJunchao Zhang	-@echo "========================================================================================="
201454c5dfcSJunchao Zhang	-@$(PYTHON)	${PETSC_DIR}/lib/petsc/bin/maint/abicheck.py -old_dir ${PETSC_DIR_ABI_OLD} -old_arch ${PETSC_ARCH_ABI_OLD} -new_dir ${PETSC_DIR} -new_arch ${PETSC_ARCH} -report_format html
2023d33ad60SJunchao Zhang
2037b444a09SBarry Smith# Compare ABI/API of current PETSC_ARCH/PETSC_DIR with a previous branch
2047b444a09SBarry Smithabitestcomplete:
2057b444a09SBarry Smith	-@if [[ -f "${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/conf/configure.log" ]]; then \
2067b444a09SBarry Smith          OPTIONS=`grep -h -m 1 "Configure Options: " ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/conf/configure.log  | sed "s!Configure Options: --configModules=PETSc.Configure --optionsModule=config.compilerOptions!!g"` ;\
2077b444a09SBarry Smithecho $${OPTIONS} ;\
2087b444a09SBarry Smith        fi ; \
2097b444a09SBarry Smith        if [[ "${PETSC_DIR_ABI_OLD}" != "" ]]; then \
2107b444a09SBarry Smith          PETSC_DIR_OLD=${PETSC_DIR_ABI_OLD}; \
2117b444a09SBarry Smith        else \
2127b444a09SBarry Smith          PETSC_DIR_OLD=${PETSC_DIR}/../petsc-abi; \
2137b444a09SBarry Smith        fi ; \
2147b444a09SBarry Smith        echo "=================================================================================================" ;\
2157b444a09SBarry Smith        echo "Doing ABI/API comparison between" ${branch} " and " `git rev-parse --abbrev-ref HEAD` "using " $${OPTIONS} ;\
2167b444a09SBarry Smith        echo "=================================================================================================" ;\
2177b444a09SBarry Smith        if [[ ! -d $${PETSC_DIR_OLD} ]]; then \
2187b444a09SBarry Smith          git clone ${PETSC_DIR} $${PETSC_DIR_OLD} ; \
2197b444a09SBarry Smith        else \
2207b444a09SBarry Smith          cd $${PETSC_DIR_OLD} ; \
2217b444a09SBarry Smith          git pull ; \
2227b444a09SBarry Smith        fi ; \
2237b444a09SBarry Smith        cd $${PETSC_DIR_OLD} ; \
2247b444a09SBarry Smith        git checkout ${branch} ; \
2257b444a09SBarry Smith        PETSC_DIR=`pwd` PETSC_ARCH=arch-branch-`git rev-parse ${branch}` ./configure $${OPTIONS} ; \
2267b444a09SBarry Smith        PETSC_DIR=`pwd` PETSC_ARCH=arch-branch-`git rev-parse ${branch}` make all test ; \
2277b444a09SBarry Smith        cd ${PETSC_DIR} ; \
2287b444a09SBarry Smith        ./configure $${OPTIONS}; \
2297b444a09SBarry Smith        make all test ; \
2307b444a09SBarry Smith        PETSC_DIR_ABI_OLD=$${PETSC_DIR_OLD} PETSC_ARCH_ABI_OLD=arch-branch-`git rev-parse ${branch}` make abitest
2317b444a09SBarry Smith
232753a1a87SJed Brown# Deletes PETSc libraries
233dd8585cdSJed Browndeletelibs:
234753a1a87SJed Brown	-${RM} -rf ${PETSC_LIB_DIR}/libpetsc*.*
235dd8585cdSJed Browndeletemods:
236753a1a87SJed Brown	-${RM} -f ${PETSC_DIR}/${PETSC_ARCH}/include/petsc*.mod
237753a1a87SJed Brown
23858080eacSSatish Balayallclean:
239*dc0529c6SBarry Smith	-@${OMAKE} -f gmakefile clean
24059d63732SSatish Balay
24159d63732SSatish Balayclean:: allclean
24259d63732SSatish Balay
24359d63732SSatish Balaydistclean: chk_petscdir
244af0996ceSBarry Smith	@if [ -f ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/conf/reconfigure-${PETSC_ARCH}.py ]; then \
245af0996ceSBarry Smith	  echo "*** Preserving ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/conf/reconfigure-${PETSC_ARCH}.py in ${PETSC_DIR} ***"; \
246af0996ceSBarry Smith          mv -f ${PETSC_DIR}/${PETSC_ARCH}/lib/petsc/conf/reconfigure-${PETSC_ARCH}.py ${PETSC_DIR}/; fi
24759d63732SSatish Balay	@echo "*** Deleting all build files in ${PETSC_DIR}/${PETSC_ARCH} ***"
24859d63732SSatish Balay	-${RM} -rf ${PETSC_DIR}/${PETSC_ARCH}/
24959d63732SSatish Balay
25059d63732SSatish Balay
251753a1a87SJed Brown#
252753a1a87SJed Brownreconfigure:
2534d5cfbf7SSatish Balay	@unset MAKEFLAGS && ${PYTHON} ${PETSC_ARCH}/lib/petsc/conf/reconfigure-${PETSC_ARCH}.py
254753a1a87SJed Brown#
255753a1a87SJed Browninstall:
2560ee81e68SLisandro Dalcin	@${PYTHON} ./config/install.py -destDir=${DESTDIR}
25795086454SStefano Zampini	+${OMAKE} PETSC_ARCH=${PETSC_ARCH} PETSC_DIR=${PETSC_DIR} mpi4py-install petsc4py-install libmesh-install slepc-install mfem-install
258753a1a87SJed Brown
259753a1a87SJed Brownstreams:
260fc5166cbSSatish Balay	-@echo "running streams in src/benchmarks/streams"
261fc5166cbSSatish Balay	+@cd src/benchmarks/streams; ${OMAKE} PATH="${PETSC_DIR}/${PETSC_ARCH}/lib:${PATH}" PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} streams
2625fabf859SBarry Smith
2635fabf859SBarry Smithstream:
264fc5166cbSSatish Balay	-@echo "running stream in src/benchmarks/streams"
265fc5166cbSSatish Balay	+@cd src/benchmarks/streams; ${OMAKE} PATH="${PETSC_DIR}/${PETSC_ARCH}/lib:${PATH}" PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} stream
266fc5166cbSSatish Balay
267753a1a87SJed Brown# ------------------------------------------------------------------
268753a1a87SJed Brown#
269753a1a87SJed Brown# All remaining actions are intended for PETSc developers only.
270753a1a87SJed Brown# PETSc users should not generally need to use these commands.
271753a1a87SJed Brown#
272753a1a87SJed Brown#  See the users manual for how the tags files may be used from Emacs and Vi/Vim
273753a1a87SJed Brown#
274753a1a87SJed Brownalletags:
275c3a89c15SBarry Smith	-@${PYTHON} lib/petsc/bin/maint/generateetags.py
276753a1a87SJed Brown	-@find config -type f -name "*.py" |grep -v SCCS | xargs etags -o TAGS_PYTHON
277753a1a87SJed Brown
278762ef373SBarry Smith# obtain gtags from http://www.gnu.org/s/global/
279762ef373SBarry Smithallgtags:
280a4ae4b6dSToby Isaac	-@find ${PETSC_DIR}/include ${PETSC_DIR}/src ${PETSC_DIR}/bin -regex '\(.*makefile\|.*\.\(cc\|hh\|cpp\|C\|hpp\|c\|h\|cu\|m\)$$\)' | grep -v ftn-auto  | gtags -f -
281762ef373SBarry Smith
282753a1a87SJed Brownallfortranstubs:
2831b266c99SBarry Smith	-@${RM} -rf ${PETSC_ARCH}/include/petsc/finclude/ftn-auto/*-tmpdir
284c3a89c15SBarry Smith	@${PYTHON} lib/petsc/bin/maint/generatefortranstubs.py ${BFORT}  ${VERBOSE}
285c3a89c15SBarry Smith	-@${PYTHON} lib/petsc/bin/maint/generatefortranstubs.py -merge  ${VERBOSE}
286a318115bSBarry Smith	-@${RM} -rf ${PETSC_ARCH}/include/petsc/finclude/ftn-auto/*-tmpdir
287753a1a87SJed Browndeletefortranstubs:
288753a1a87SJed Brown	-@find . -type d -name ftn-auto | xargs rm -rf
289753a1a87SJed Brown
290753a1a87SJed Brown# Builds all the documentation - should be done every night
291fb3ce96aSSatish Balayalldoc: allcite allpdf alldoc1 alldoc2 docsetdate
292753a1a87SJed Brown
293f4da3331SVáclav Hapla# Build just citations
294f4da3331SVáclav Haplaallcite: chk_loc deletemanualpages
295c3a89c15SBarry Smith	-${PYTHON} lib/petsc/bin/maint/countpetsccits.py
296753a1a87SJed Brown	-${OMAKE} ACTION=manualpages_buildcite tree_basic LOC=${LOC}
297753a1a87SJed Brown	-@sed -e s%man+../%man+manualpages/% ${LOC}/docs/manualpages/manualpages.cit > ${LOC}/docs/manualpages/htmlmap
298753a1a87SJed Brown	-@cat ${PETSC_DIR}/src/docs/mpi.www.index >> ${LOC}/docs/manualpages/htmlmap
299f4da3331SVáclav Hapla
300f4da3331SVáclav Hapla# Build just PDF manuals + prerequisites
301f4da3331SVáclav Haplaallpdf: chk_loc allcite
302753a1a87SJed Brown	-cd src/docs/tex/manual; ${OMAKE} manual.pdf LOC=${LOC}
303753a1a87SJed Brown	-cd src/docs/tex/manual; ${OMAKE} developers.pdf LOC=${LOC}
304f5b986e4SVáclav Hapla	-cd src/docs/tao_tex/manual; ${OMAKE} manual.pdf LOC=${LOC}
305f4da3331SVáclav Hapla
306f4da3331SVáclav Hapla# Build just manual pages + prerequisites
307f4da3331SVáclav Haplaallmanpages: chk_loc allcite
308753a1a87SJed Brown	-${OMAKE} ACTION=manualpages tree_basic LOC=${LOC}
309f4da3331SVáclav Hapla
310f4da3331SVáclav Hapla# Build just manual examples + prerequisites
311f4da3331SVáclav Haplaallmanexamples: chk_loc allmanpages
312753a1a87SJed Brown	-${OMAKE} ACTION=manexamples tree_basic LOC=${LOC}
313f4da3331SVáclav Hapla
314f4da3331SVáclav Hapla# Build everything that goes into 'doc' dir except html sources
315f4da3331SVáclav Haplaalldoc1: chk_loc chk_concepts_dir allcite allmanpages allmanexamples
31621fcc2ddSBarry Smith	-${OMAKE} manimplementations LOC=${LOC}
317c3a89c15SBarry Smith	-${PYTHON} lib/petsc/bin/maint/wwwindex.py ${PETSC_DIR} ${LOC}
318753a1a87SJed Brown	-${OMAKE} manconcepts LOC=${LOC}
319753a1a87SJed Brown	-${OMAKE} ACTION=getexlist tree_basic LOC=${LOC}
320753a1a87SJed Brown	-${OMAKE} ACTION=exampleconcepts tree_basic LOC=${LOC}
321c3a89c15SBarry Smith	-${PYTHON} lib/petsc/bin/maint/helpindex.py ${PETSC_DIR} ${LOC}
322753a1a87SJed Brown
323753a1a87SJed Brown# Builds .html versions of the source
324753a1a87SJed Brown# html overwrites some stuff created by update-docs - hence this is done later.
325753a1a87SJed Brownalldoc2: chk_loc
3267070facaSSatish Balay	-${OMAKE} ACTION=html PETSC_DIR=${PETSC_DIR} alltree LOC=${LOC}
327c3a89c15SBarry Smith	-${PYTHON} lib/petsc/bin/maint/update-docs.py ${PETSC_DIR} ${LOC}
328753a1a87SJed Brown#
329d9dc08c3SBarry Smith# Makes links for all manual pages in $LOC/docs/manualpages/all
330d9dc08c3SBarry Smithallman:
331d9dc08c3SBarry Smith	@cd ${LOC}/docs/manualpages; rm -rf all ; mkdir all ; find *  -type d -wholename all -prune -o -name index.html -prune  -o -type f -name \*.html -exec ln -s  -f ../{} all \;
332d9dc08c3SBarry Smith
333de86d973SSatish BalayDOCSETDATE_PRUNE_LIST=-o -type f -wholename share/petsc/saws/linearsolveroptions.html -prune -o -type f -wholename tutorials/HandsOnExercise.html -prune -o -type f -wholename tutorials/TAOHandsOnExercise.html -prune
334f304b780SSatish Balay
335753a1a87SJed Brown# modify all generated html files and add in version number, date, canonical URL info.
336ad5c76d5SBarry Smithdocsetdate: chk_petscdir
337753a1a87SJed Brown	@echo "Updating generated html files with petsc version, date, canonical URL info";\
338753a1a87SJed Brown        version_release=`grep '^#define PETSC_VERSION_RELEASE ' include/petscversion.h |tr -s ' ' | cut -d ' ' -f 3`; \
339753a1a87SJed Brown        version_major=`grep '^#define PETSC_VERSION_MAJOR ' include/petscversion.h |tr -s ' ' | cut -d ' ' -f 3`; \
340753a1a87SJed Brown        version_minor=`grep '^#define PETSC_VERSION_MINOR ' include/petscversion.h |tr -s ' ' | cut -d ' ' -f 3`; \
341e4643290SSatish Balay        version_subminor=`grep '^#define PETSC_VERSION_SUBMINOR ' include/petscversion.h |tr -s ' ' | cut -d ' ' -f 3`; \
342753a1a87SJed Brown        if  [ $${version_release} = 0 ]; then \
343cc5a9e26SSatish Balay          petscversion=petsc-master; \
344753a1a87SJed Brown          export petscversion; \
345753a1a87SJed Brown        elif [ $${version_release} = 1 ]; then \
346e4643290SSatish Balay          petscversion=petsc-$${version_major}.$${version_minor}.$${version_subminor}; \
347753a1a87SJed Brown          export petscversion; \
348753a1a87SJed Brown        else \
349753a1a87SJed Brown          echo "Unknown PETSC_VERSION_RELEASE: $${version_release}"; \
350753a1a87SJed Brown          exit; \
351753a1a87SJed Brown        fi; \
3529c5cad75SSatish Balay        datestr=`git log -1 --pretty=format:%ci | cut -d ' ' -f 1`; \
353753a1a87SJed Brown        export datestr; \
3542c3da995SSatish Balay        gitver=`git describe --match "v*"`; \
3553408a366SSatish Balay        export gitver; \
356*dc0529c6SBarry Smith        find * -type d -wholename src/docs/website \
357*dc0529c6SBarry Smith          -prune -o -type d -wholename src/benchmarks/results \
358*dc0529c6SBarry Smith          -prune -o -type d -wholename config/BuildSystem/docs/website \
359*dc0529c6SBarry Smith          -prune -o -type d -wholename include/web \
360*dc0529c6SBarry Smith          -prune -o -type d -wholename 'arch-*' \
361*dc0529c6SBarry Smith          -prune -o -type d -wholename lib/petsc/bin/maint \
362*dc0529c6SBarry Smith          -prune -o -type d -wholename externalpackages \
363*dc0529c6SBarry Smith          -prune ${DOCSETDATE_PRUNE_LIST} -o -type f -name \*.html \
3643408a366SSatish Balay          -exec perl -pi -e 's^(<body.*>)^$$1\n   <div id=\"version\" align=right><b>$$ENV{petscversion} $$ENV{datestr}</b></div>\n   <div id="bugreport" align=right><a href="mailto:petsc-maint\@mcs.anl.gov?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: $$ENV{petscversion} $$ENV{gitver} {} "><small>Report Typos and Errors</small></a></div>^i' {} \; \
365753a1a87SJed Brown          -exec perl -pi -e 's^(<head>)^$$1 <link rel="canonical" href="http://www.mcs.anl.gov/petsc/petsc-current/{}" />^i' {} \; ; \
366753a1a87SJed Brown        echo "Done fixing version number, date, canonical URL info"
367753a1a87SJed Brown
368753a1a87SJed Brownalldocclean: deletemanualpages allcleanhtml
369753a1a87SJed Brown
370753a1a87SJed Brown# Deletes man pages (HTML version)
371753a1a87SJed Browndeletemanualpages: chk_loc
372753a1a87SJed Brown	-@if [ -d ${LOC} -a -d ${LOC}/docs/manualpages ]; then \
373753a1a87SJed Brown          find ${LOC}/docs/manualpages -type f -name "*.html" -exec ${RM} {} \; ;\
374753a1a87SJed Brown          ${RM} ${LOC}/docs/exampleconcepts ;\
375753a1a87SJed Brown          ${RM} ${LOC}/docs/manconcepts ;\
376753a1a87SJed Brown          ${RM} ${LOC}/docs/manualpages/manualpages.cit ;\
377c3a89c15SBarry Smith          ${PYTHON} lib/petsc/bin/maint/update-docs.py ${PETSC_DIR} ${LOC} clean;\
378753a1a87SJed Brown        fi
379753a1a87SJed Brown
380753a1a87SJed Brownallcleanhtml:
381753a1a87SJed Brown	-${OMAKE} ACTION=cleanhtml PETSC_DIR=${PETSC_DIR} alltree
382753a1a87SJed Brown
383753a1a87SJed Brownchk_concepts_dir: chk_loc
384753a1a87SJed Brown	@if [ ! -d "${LOC}/docs/manualpages/concepts" ]; then \
385753a1a87SJed Brown	  echo Making directory ${LOC}/docs/manualpages/concepts for library; ${MKDIR} ${LOC}/docs/manualpages/concepts; fi
386753a1a87SJed Brown
387753a1a87SJed Brown###########################################################
388753a1a87SJed Brown# targets to build distribution and update docs
389753a1a87SJed Brown###########################################################
390753a1a87SJed Brown
391753a1a87SJed Brown# Creates ${HOME}/petsc.tar.gz [and petsc-lite.tar.gz]
392753a1a87SJed Browndist:
393c3a89c15SBarry Smith	${PETSC_DIR}/lib/petsc/bin/maint/builddist ${PETSC_DIR} master
394753a1a87SJed Brown
395753a1a87SJed Brown# This target works only if you can do 'ssh petsc@login.mcs.anl.gov'
396753a1a87SJed Brown# also copy the file over to ftp site.
397753a1a87SJed Brownweb-snapshot:
398cc5a9e26SSatish Balay	@if [ ! -f "${HOME}/petsc-master.tar.gz" ]; then \
399cc5a9e26SSatish Balay	    echo "~/petsc-master.tar.gz missing! cannot update petsc-master snapshot on mcs-web-site"; \
400753a1a87SJed Brown	  else \
401cc5a9e26SSatish Balay            echo "updating petsc-master snapshot on mcs-web-site"; \
402753a1a87SJed Brown	    tmpdir=`mktemp -d -t petsc-doc.XXXXXXXX`; \
403cc5a9e26SSatish Balay	    cd $${tmpdir}; tar -xzf ${HOME}/petsc-master.tar.gz; \
404cc5a9e26SSatish Balay	    /usr/bin/rsync  -e ssh -az --delete $${tmpdir}/petsc-master/ \
405cc5a9e26SSatish Balay              petsc@login.mcs.anl.gov:/mcs/web/research/projects/petsc/petsc-master ;\
406cc5a9e26SSatish Balay	    /bin/cp -f /home/petsc/petsc-master.tar.gz /mcs/ftp/pub/petsc/petsc-master.tar.gz;\
407753a1a87SJed Brown	    ${RM} -rf $${tmpdir} ;\
408753a1a87SJed Brown	  fi
409753a1a87SJed Brown
410cc5a9e26SSatish Balay# build the tarfile - and then update petsc-master snapshot on mcs-web-site
411753a1a87SJed Brownupdate-web-snapshot: dist web-snapshot
412753a1a87SJed Brown
413753a1a87SJed Brown# This target updates website main pages
414753a1a87SJed Brownupdate-web:
415753a1a87SJed Brown	@cd ${PETSC_DIR}/src/docs; make PETSC_DIR=${PETSC_DIR} PETSC_ARCH=${PETSC_ARCH} bib2html; \
416753a1a87SJed Brown	/usr/bin/rsync -az -C --exclude=documentation/index.html \
417753a1a87SJed Brown          --exclude=documentation/installation.html --exclude=download/index.html \
418753a1a87SJed Brown	  ${PETSC_DIR}/src/docs/website/ petsc@login.mcs.anl.gov:/mcs/web/research/projects/petsc
419753a1a87SJed Brown	@cd ${PETSC_DIR}/docs; /usr/bin/rsync -az developers.pdf petsc@login.mcs.anl.gov:/mcs/web/research/projects/petsc/developers/
42092df35d2SSatish Balay	@cd ${PETSC_DIR}/src/docs/tex; /usr/bin/rsync -az petscapp.bib petsc.bib petsc@login.mcs.anl.gov:/mcs/web/research/projects/petsc/publications
421753a1a87SJed Brown
422753a1a87SJed Brown###########################################################
423753a1a87SJed Brown#
424753a1a87SJed Brown#  See script for details
425753a1a87SJed Brown#
426753a1a87SJed Browngcov:
4274344ef9dSJed Brown	-@$(PYTHON) ${PETSC_DIR}/lib/petsc/bin/maint/gcov.py -run_gcov
428753a1a87SJed Brown
429753a1a87SJed Brownmergegcov:
4304344ef9dSJed Brown	-@$(PYTHON) ${PETSC_DIR}/lib/petsc/bin/maint/gcov.py -merge_gcov ${LOC} *.tar.gz
431753a1a87SJed Brown
4329eed5432SKarl Rupp########################
433235fd6e6SBarry Smith#
4349eed5432SKarl Rupp# Create the include dependency graph (requires graphviz to be available)
4359eed5432SKarl Rupp#
4369eed5432SKarl Ruppincludegraph:
4379eed5432SKarl Rupp	-@${PETSC_DIR}/src/contrib/style/include-graph.sh includegraph.pdf
4389eed5432SKarl Rupp	-@echo Include dependency graph written to includegraph.pdf
439235fd6e6SBarry Smith
440753a1a87SJed Brown#
441753a1a87SJed Brown# -------------------------------------------------------------------------------
442753a1a87SJed Brown#
443753a1a87SJed Brown# Some macros to check if the fortran interface is up-to-date.
444753a1a87SJed Brown#
445753a1a87SJed Browncountfortranfunctions:
446753a1a87SJed Brown	-@cd ${PETSC_DIR}/src/fortran; egrep '^void' custom/*.c auto/*.c | \
447753a1a87SJed Brown	cut -d'(' -f1 | tr -s  ' ' | cut -d' ' -f2 | uniq | egrep -v "(^$$|Petsc)" | \
448753a1a87SJed Brown	sed "s/_$$//" | sort > /tmp/countfortranfunctions
449753a1a87SJed Brown
450753a1a87SJed Browncountcfunctions:
451068711b4SBarry Smith	-@grep PETSC_EXTERN ${PETSC_DIR}/include/*.h  | grep "(" | tr -s ' ' | \
452753a1a87SJed Brown	cut -d'(' -f1 | cut -d' ' -f3 | grep -v "\*" | tr -s '\012' |  \
453068711b4SBarry Smith	tr 'A-Z' 'a-z' |  sort | uniq > /tmp/countcfunctions
454753a1a87SJed Brown
455753a1a87SJed Browndifffortranfunctions: countfortranfunctions countcfunctions
456753a1a87SJed Brown	-@echo -------------- Functions missing in the fortran interface ---------------------
457753a1a87SJed Brown	-@${DIFF} /tmp/countcfunctions /tmp/countfortranfunctions | grep "^<" | cut -d' ' -f2
458753a1a87SJed Brown	-@echo ----------------- Functions missing in the C interface ------------------------
459753a1a87SJed Brown	-@${DIFF} /tmp/countcfunctions /tmp/countfortranfunctions | grep "^>" | cut -d' ' -f2
460753a1a87SJed Brown	-@${RM}  /tmp/countcfunctions /tmp/countfortranfunctions
461753a1a87SJed Brown
462753a1a87SJed Browncheckbadfortranstubs:
463753a1a87SJed Brown	-@echo "========================================="
464753a1a87SJed Brown	-@echo "Functions with MPI_Comm as an Argument"
465753a1a87SJed Brown	-@echo "========================================="
466753a1a87SJed Brown	-@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'MPI_Comm' | \
467753a1a87SJed Brown	tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3
468753a1a87SJed Brown	-@echo "========================================="
469753a1a87SJed Brown	-@echo "Functions with a String as an Argument"
470753a1a87SJed Brown	-@echo "========================================="
471753a1a87SJed Brown	-@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'char \*' | \
472753a1a87SJed Brown	tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3
473753a1a87SJed Brown	-@echo "========================================="
474753a1a87SJed Brown	-@echo "Functions with Pointers to PETSc Objects as Argument"
475753a1a87SJed Brown	-@echo "========================================="
476753a1a87SJed Brown	-@cd ${PETSC_DIR}/src/fortran/auto; \
477753a1a87SJed Brown	_p_OBJ=`grep _p_ ${PETSC_DIR}/include/*.h | tr -s ' ' | \
478753a1a87SJed Brown	cut -d' ' -f 3 | tr -s '\012' | grep -v '{' | cut -d'*' -f1 | \
479753a1a87SJed Brown	sed "s/_p_//g" | tr -s '\012 ' ' *|' ` ; \
480753a1a87SJed Brown	for OBJ in $$_p_OBJ; do \
481753a1a87SJed Brown	grep "$$OBJ \*" *.c | tr -s ' ' | tr -s ':' ' ' | \
482753a1a87SJed Brown	cut -d'(' -f1 | cut -d' ' -f1,3; \
483753a1a87SJed Brown	done
484a3269974SBarry Smith
485a3269974SBarry Smithcheckpackagetests:
486a3269974SBarry Smith	-@echo "Missing package tests"
487a3269974SBarry Smith	-@cat config/examples/*.py > configexamples; pushd config/BuildSystem/config/packages/; packages=`ls *.py | sed "s/\\.py//g"`;popd; for i in $${packages}; do j=`echo $${i} | tr '[:upper:]' '[:lower:]'`; printf $${j} ; egrep "(with-$${j}|download-$${j})" configexamples | grep -v "=0" | wc -l ; done
488a3269974SBarry Smith	-@echo "Missing download package tests"
489a3269974SBarry Smith	-@cat config/examples/*.py > configexamples; pushd config/BuildSystem/config/packages/; packages=`grep -l "download " *.py  | sed "s/\\.py//g"`;popd; for i in $${packages}; do j=`echo $${i} | tr '[:upper:]' '[:lower:]'`; printf $${j} ; egrep "(download-$${j})" configexamples | grep -v "=0" | wc -l ; done
490a3269974SBarry Smith
491753a1a87SJed Brown#
492753a1a87SJed Brown# Automatically generates PETSc exercises in html from the tutorial examples.
493753a1a87SJed Brown#
4941b266c99SBarry Smith# The introduction for each section is obtained from docs/manualpages-cite/header_${MANSEC} may be edited
495753a1a87SJed Brown#  (used also in introductions to the manual pages)
496753a1a87SJed Brown#
4971b266c99SBarry Smith# DO NOT EDIT the *.htm files generated since they will be automatically replaced.
498753a1a87SJed Brown#
499753a1a87SJed Brown# Eventually the line below will replace the two cd in the rule below, it is just this way now for speed
500753a1a87SJed Brown#	-@${OMAKE} PETSC_DIR=${PETSC_DIR} pagemaker
501753a1a87SJed Brown#
502753a1a87SJed Brownexercises:
503753a1a87SJed Brown	-@echo "========================================="
504753a1a87SJed Brown	-@echo "Generating HTML tutorial exercises"
505753a1a87SJed Brown	-@${RM} docs/pageform.txt
506753a1a87SJed Brown	-@echo "title=\"PETSc Exercises\""                >  docs/pageform.txt
507753a1a87SJed Brown	-@echo "access_title=Exercise Sections"              >>  docs/pageform.txt
508753a1a87SJed Brown	-@echo "access_format=short"                        >> docs/pageform.txt
509753a1a87SJed Brown	-@echo "startpage=../exercises/introduction.htm"  >> docs/pageform.txt
510753a1a87SJed Brown	-@echo "NONE title=\"Introduction\" command=link src=../exercises/introduction.htm" >> docs/pageform.txt
511753a1a87SJed Brown	-@echo "Generating HTML for individual directories"
512753a1a87SJed Brown	-@echo "========================================="
513753a1a87SJed Brown	-@${OMAKE} PETSC_DIR=${PETSC_DIR} ACTION=pagemaker tree
514753a1a87SJed Brown	-@echo "Completed HTML for individual directories"
515753a1a87SJed Brown	-@echo "NONE title=\"<HR>\" " >> docs/pageform.txt;
516753a1a87SJed Brown	-@echo "NONE title=\"PETSc Documentation\" command=link src=../index.html target=replace" >> docs/pageform.txt
517753a1a87SJed Brown	/home/MPI/class/mpiexmpl/maint/makepage.new -pageform=docs/pageform.txt -access_extra=/dev/null -outdir=docs/exercises
518753a1a87SJed Brown	-@echo "========================================="
519753a1a87SJed Brown
520*dc0529c6SBarry Smith.PHONY: info info_h all deletelibs allclean update \
521753a1a87SJed Brown        alletags etags etags_complete etags_noexamples etags_makefiles etags_examples etags_fexamples alldoc allmanualpages \
522*dc0529c6SBarry Smith        allhtml allcleanhtml  countfortranfunctions \
523416ff897SSatish Balay        start_configure configure_petsc configure_clean matlabbin install
524