# # This is the makefile for installing PETSc. See the file # Installation for directions on installing PETSc. # See also bmake/common for additional commands. # #PETSC_DIR = . CFLAGS = SOURCEC = SOURCEF = SOURCEH = Changes Machines Readme maint/addlinks \ maint/builddist FAQ Installation Performance BugReporting\ maint/buildlinks maint/wwwman maint/xclude maint/crontab\ bmake/common bmake/*/base* maint/autoftp docs/www/sec/* OBJSC = OBJSF = LIBBASE = libpetscvec DIRS = src include docs include $(PETSC_DIR)/bmake/$(PETSC_ARCH)/base # Builds PETSc libraries for a given BOPT and architecture all: chkpetsc_dir -$(RM) -f $(PDIR)/* -@echo "Beginning to compile libraries in all directories" -@echo "Using compiler: $(CC) $(CFLAGS) $(COPTFLAGS)" -@echo "Using PETSc flags: $(PETSCFLAGS) $(PCONF)" -@echo "Using configuration flags: $(CONF)" -@echo "Using include paths: $(PETSC_INCLUDE)" -@echo "Using PETSc directory: $(PETSC_DIR)" -@echo "Using PETSc arch: $(PETSC_ARCH)" -@echo "------------------------------------------" -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ ACTION=libfast tree -@cd $(PETSC_DIR)/src/sys/src ; $(OMAKE) PETSC_ARCH=$(PETSC_ARCH) rs6000_time $(RANLIB) $(PDIR)/*.a -@chmod g+w $(PDIR)/*.a -@echo "Completed building libraries" -@echo "------------------------------------------" # Builds PETSc test examples for a given BOPT and architecture testexamples: chkpetsc_dir -@echo "Beginning to compile and run test examples" -@echo "Using compiler: $(CC) $(CFLAGS) $(COPTFLAGS)" -@echo "Using PETSc flags: $(PETSCFLAGS) $(PCONF)" -@echo "Using include paths: $(PETSC_INCLUDE)" -@echo "Using PETSc directory: $(PETSC_DIR)" -@echo "Using PETSc arch: $(PETSC_ARCH)" -@echo "------------------------------------------" -@echo "Using linker: $(CLINKER)" -@echo "Using libraries: $(PETSC_LIB)" -@echo "------------------------------------------" -@echo "Due to different numerical round-off on certain" -@echo "machines some of the numbers may not match exactly." -@echo "------------------------------------------" -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ ACTION=testexamples_1 tree -@echo "Completed compiling and running test examples" -@echo "------------------------------------------" # Builds PETSc test examples for a given BOPT and architecture testexamples_uni: chkpetsc_dir -@echo "Beginning to compile and run uniprocessor test examples" -@echo "Using compiler: $(CC) $(CFLAGS) $(COPTFLAGS)" -@echo "Using linker: $(CLINKER)" -@echo "Using PETSc flags: $(PETSCFLAGS) $(PCONF)" -@echo "Using include paths: $(PETSC_INCLUDE)" -@echo "Using PETSc directory: $(PETSC_DIR)" -@echo "Using PETSc arch: $(PETSC_ARCH)" -@echo "------------------------------------------" -@echo "Using linker: $(CLINKER)" -@echo "Using libraries: $(PETSC_LIB)" -@echo "------------------------------------------" -@echo "Due to different numerical round-off on certain" -@echo "machines some of the numbers may not match exactly." -@echo "------------------------------------------" -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ ACTION=testexamples_4 tree -@echo "Completed compiling and running uniprocessor test examples" -@echo "------------------------------------------" # # Builds PETSc Fortran interface libary # Note: libfast cannot run on .F files on certain machines, so we # use lib and check for errors here. fortran: chkpetsc_dir -$(RM) -f $(PDIR)/libpetscfortran.* -@echo "Beginning to compile Fortran interface library" -@echo "Using Fortran compiler: $(FC) $(FFLAGS) $(FOPTFLAGS)" -@echo "Using C/C++ compiler: $(CC) $(CFLAGS) $(COPTFLAGS)" -@echo "Using PETSc flags: $(PETSCFLAGS) $(PCONF)" -@echo "Using configuration flags: $(CONF)" -@echo "Using include paths: $(PETSC_INCLUDE)" -@echo "Using PETSc directory: $(PETSC_DIR)" -@echo "Using PETSc arch: $(PETSC_ARCH)" -@echo "------------------------------------------" -@cd src/fortran/custom; \ $(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) lib > trashz 2>&1; \ grep -v clog trashz | grep -v "information sections" | \ egrep -i '(Error|warning|Can)' >> /dev/null;\ if [ "$$?" != 1 ]; then \ cat trashz ; fi; $(RM) trashz -@cd src/fortran/auto; \ $(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) libfast $(RANLIB) $(PDIR)/libpetscfortran.a -@chmod g+w $(PDIR)/*.a -@echo "Completed compiling Fortran interface library" -@echo "------------------------------------------" # Builds PETSc test examples for a given BOPT and architecture testfortran: chkpetsc_dir -@echo "Beginning to compile and run Fortran test examples" -@echo "Using compiler: $(FC) $(FFLAGS) $(FOPTFLAGS)" -@echo "Using linker: $(FLINKER)" -@echo "Using PETSc flags: $(PETSCFLAGS) $(PCONF)" -@echo "Using PETSc directory: $(PETSC_DIR)" -@echo "Using PETSc arch: $(PETSC_ARCH)" -@echo "------------------------------------------" -@echo "Using linker: $(FLINKER)" -@echo "Using libraries: $(PETSC_FORTRAN_LIB) $(PETSC_LIB)" -@echo "------------------------------------------" -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ ACTION=testexamples_3 tree -@echo "Completed compiling and running Fortran test examples" -@echo "------------------------------------------" ranlib: $(RANLIB) $(PDIR)/*.a # Deletes PETSc libraries deletelibs: -$(RM) -f $(PDIR)/*.a $(PDIR)/complex/* $(PDIR)/c++/* # Deletes man pages (HTML version) deletewwwpages: $(RM) -f $(PETSC_DIR)/docs/www/man*/* $(PETSC_DIR)/docs/www/www.cit \ $(PETSC_DIR)/docs/www/man*.html # Deletes man pages (LaTeX version) deletelatexpages: $(RM) -f $(PETSC_DIR)/docs/tex/rsum/*sum*.tex # To access the tags in emacs, type M-x visit-tags-table and specify # the file petsc/TAGS. Then, to move to where a PETSc function is # defined, enter M-. and the function name. 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-, TAGS_INCLUDE_FILES = include/*.h include/pinclude/*.h include/FINCLUDE/*.h TAGS_BMAKE_FILES = bmake/common bmake/*/base* TAGS_EXAMPLE_FILES = src/*/examples/*/*.[c,h,F,f] src/*/examples/*/*/*.[c,h,F,f] \ src/benchmarks/*.c src/contrib/*/examples/*/*.[c,h,F,f] TAGS_DOC_FILES = docs/tex/manual/routin.tex docs/tex/manual/manual.tex \ docs/tex/manual/manual_tex.tex docs/tex/manual/intro.tex \ docs/tex/manual/part1.tex docs/tex/manual/part2.tex TAGS_SRC_FILES = src/*/*.h src/*/interface/*.[c,h] src/*/src/*.[c,h] \ src/*/utils/*.[c,h] \ src/*/impls/*.[c,h] src/*/impls/*/*.[c,h] src/*/impls/*/*/*.[c,h] \ src/gvec/impls/*/*/*/*/*.[c,h] src/contrib/*/*.[c,h] src/contrib/*/src/*.[c,h] \ src/fortran/custom/*.[c,h,F] TAGS_MAKEFILE_FILES = include/makefile include/*/makefile \ makefile \ src/makefile src/*/makefile src/*/src/makefile \ src/*/interface/makefile \ src/*/utils/makefile \ src/*/impls/makefile src/*/impls/*/makefile src/*/impls/*/*/makefile \ src/*/examples/makefile src/*/examples/*/makefile src/*/examples/*/*/makefile \ src/gvec/impls/*/*/*/*/makefile src/gvec/impls/*/*/*/makefile \ src/fortran/*/makefile \ src/contrib/*/makefile src/contrib/*/src/makefile \ src/contrib/*/examples/makefile src/contrib/*/examples/*/makefile \ docs/makefile # Builds all etags files alletags: -make etags_complete -make etags -make etags_noexamples -make etags_makefiles # Builds the basic etags file. This should be employed by most users. etags: $(RM) TAGS etags -f TAGS $(TAGS_INCLUDE_FILES) etags -a -f TAGS $(TAGS_SRC_FILES) etags -a -f TAGS $(TAGS_EXAMPLE_FILES) etags -a -f TAGS $(TAGS_MAKEFILE_FILES) etags -a -f TAGS $(TAGS_BMAKE_FILES) chmod g+w TAGS # Builds complete etags list; only for PETSc developers. etags_complete: $(RM) TAGS_COMPLETE etags -f TAGS_COMPLETE $(TAGS_SRC_FILES) etags -a -f TAGS_COMPLETE $(TAGS_INCLUDE_FILES) etags -a -f TAGS_COMPLETE $(TAGS_EXAMPLE_FILES) etags -a -f TAGS_COMPLETE $(TAGS_MAKEFILE_FILES) etags -a -f TAGS_COMPLETE $(TAGS_BMAKE_FILES) etags -a -f TAGS_COMPLETE $(TAGS_DOC_FILES) chmod g+w TAGS_COMPLETE # Builds the etags file that excludes the examples directories etags_noexamples: $(RM) TAGS_NO_EXAMPLES etags -f TAGS_NO_EXAMPLES $(TAGS_SRC_FILES) etags -a -f TAGS_NO_EXAMPLES $(TAGS_INCLUDE_FILES) etags -a -f TAGS_NO_EXAMPLES $(TAGS_MAKEFILE_FILES) etags -a -f TAGS_NO_EXAMPLES $(TAGS_BMAKE_FILES) etags -a -f TAGS_NO_EXAMPLES $(TAGS_DOC_FILES) chmod g+w TAGS_NO_EXAMPLES # Builds the etags file for makefiles etags_makefiles: $(RM) TAGS_MAKEFILES etags -f TAGS_MAKEFILES $(TAGS_MAKEFILE_FILES) etags -a -f TAGS_MAKEFILES $(TAGS_BMAKE_FILES) chmod g+w TAGS_MAKEFILES # # ctags builds the tags file required for VI. # To use the tags file do the following: # 1. within vi invole the command - :set tags=/home/bsmith/petsc/tags # or add the command to your ~/.exrc file - set tags=/home/bsmith/petsc/tags # 2. now to go to a tag do - :tag TAGNAME for eg - :tag MatCreate # ctags: $(RM) tags ctags -w -f tags $(TAGS_INCLUDE_FILES) ctags -w -a -f tags $(TAGS_SRC_FILES) ctags -w -a -f tags $(TAGS_EXAMPLE_FILES) ctags -w -a -f tags $(TAGS_MAKEFILE_FILES) ctags -w -a -f tags $(TAGS_BMAKE_FILES) chmod g+w tags # ------------------------------------------------------------------ # # All remaining actions are intended for PETSc developers only. # PETSc users should not generally need to use these commands. # # Builds all versions of the man pages allmanpages: allwwwpages alllatexpages allwwwpages: deletewwwpages -make ACTION=wwwpages_buildcite tree -cd src/fortran/custom; make wwwpages_buildcite -cd src/fortran/custom; make wwwpages -make ACTION=wwwpages tree -maint/wwwman -maint/examplesindex.tcl -www -@chmod g+w docs/www/man*/* alllatexpages: deletelatexpages -make ACTION=latexpages tree -cd src/fortran/custom; make latexpages -@chmod g+w docs/tex/rsum/* # Builds Fortran stub files allfortranstubs: -@include/finclude/generateincludes -@$(RM) -f $(PETSC_DIR)/src/fortran/auto/*.c -make ACTION=fortranstubs tree chmod g+w $(PETSC_DIR)/src/fortran/auto/*.c # # We no longer make Unix manpages # #allunixmanpages: # -make ACTION=manpages tree # -cd src/fortran/custom; make manpages # -cd docs/man; catman -W . # -@chmod g+w docs/man/man*/* # Deletes man pages (xman version) #deletemanpages: # $(RM) -f $(PETSC_DIR)/Keywords $(PETSC_DIR)/docs/man/man*/*