1# 2# This makefile contains some basic commands for building PETSc. 3# See bmake/common for additional commands. 4# 5 6PETSC_DIR = . 7 8CFLAGS = -I$(PETSC_DIR)/include -I.. -I$(PETSC_DIR) $(CONF) $(PCONF) 9SOURCEC = 10SOURCEF = 11SOURCEH = Changes Machines Readme maint/addlinks \ 12 maint/builddist FAQ Installation Performance BugReporting\ 13 maint/buildlinks maint/wwwman maint/xclude maint/crontab\ 14 bmake/common bmake/sun4/* bmake/paragon/* bmake/linux/* \ 15 bmake/rs6000/* bmake/alpha/* bmake/IRIX/* bmake/IRIX64/* \ 16 bmake/hpux/* bmake/t3d/* bmake/freebsd/* bmake/solaris/* \ 17 bmake/sun4_local/* maint/autoftp 18OBJSC = 19OBJSF = 20LIBBASE = libpetscvec 21DIRS = src include docs 22 23include $(PETSC_DIR)/bmake/$(PETSC_ARCH)/$(PETSC_ARCH) 24 25# Builds PETSc libraries for a given BOPT and architecture 26all: chkpetsc_dir 27 -$(RM) -f $(PDIR)/*.a 28 -@echo "Beginning to compile libraries in all directories" 29 -@echo "Using compiler: $(CC) $(PETSC_INCLUDE) $(CONF) $(PCONF) $(BASEOPT)" 30 -@echo "------------------------------------------" 31 -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ 32 ACTION=libfast tree 33 -@cd $(PETSC_DIR)/src/sys/src ; $(OMAKE) PETSC_ARCH=$(PETSC_ARCH) rs6000_time 34 $(RANLIB) $(PDIR)/*.a 35 -@echo "Completed building libraries" 36 -@echo "------------------------------------------" 37 38# Builds PETSc test examples for a given BOPT and architecture 39testexamples: chkpetsc_dir 40 -@echo "Beginning to compile and run test examples" 41 -@echo "Using compiler: $(CC) $(PETSC_INCLUDE) $(PCONF) $(BASEOPT)" 42 -@echo "Using linker: $(CLINKER)" 43 -@echo "Using libraries: $(PETSC_LIB)" 44 -@echo "------------------------------------------" 45 -@echo "Due to different numerical round-off on certain" 46 -@echo "machines some of the numbers may not match exactly." 47 -@echo "------------------------------------------" 48 -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ 49 ACTION=testexamples_1 tree 50 -@echo "Completed compiling and running test examples" 51 -@echo "------------------------------------------" 52 53# Builds PETSc test examples for a given BOPT and architecture 54testexamples_uni: chkpetsc_dir 55 -@echo "Beginning to compile and run uniprocessor test examples" 56 -@echo "Using compiler: $(CC) $(PETSC_INCLUDE) $(PCONF) $(BASEOPT)" 57 -@echo "Using linker: $(CLINKER)" 58 -@echo "Using libraries: $(PETSC_LIB)" 59 -@echo "------------------------------------------" 60 -@echo "Due to different numerical round-off on certain" 61 -@echo "machines some of the numbers may not match exactly." 62 -@echo "------------------------------------------" 63 -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ 64 ACTION=testexamples_4 tree 65 -@echo "Completed compiling and running uniprocessor test examples" 66 -@echo "------------------------------------------" 67 68# Builds PETSc test examples for a given BOPT and architecture 69testfortran: chkpetsc_dir 70 -@echo "Beginning to compile and run Fortran test examples" 71 -@echo "Using compiler: $(FC) $(BASEOPTF)" 72 -@echo "Using linker: $(FLINKER)" 73 -@echo "Using libraries: $(PETSC_FORTRAN_LIB) $(PETSC_LIB)" 74 -@echo "------------------------------------------" 75 -@$(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) \ 76 ACTION=testexamples_3 tree 77 -@echo "Completed compiling and running Fortran test examples" 78 -@echo "------------------------------------------" 79 80# 81# Builds PETSc Fortran interface libary 82# Note: libfast cannot run on .F files on certain machines, so we 83# use lib and check for errors here. 84fortran: chkpetsc_dir 85 -$(RM) -f $(PDIR)/libpetscfortran.a 86 -@echo "Beginning to compile Fortran interface library" 87 -@echo "Using C/C++ compiler: $(CC) $(PETSC_INCLUDE) $(PCONF) $(BASEOPT)" 88 -@echo "Using Fortran compiler: $(FC) $(BASEOPTF)" 89 -@echo "------------------------------------------" 90 -@cd src/fortran/custom; \ 91 $(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) lib > trashz 2>&1; \ 92 grep -v clog trashz | grep -v "information sections" | \ 93 egrep -i '(Error|warning|Can)' >> /dev/null;\ 94 if [ "$$?" != 1 ]; then \ 95 cat trashz ; fi; $(RM) trashz 96 -@cd src/fortran/auto; \ 97 $(OMAKE) BOPT=$(BOPT) PETSC_ARCH=$(PETSC_ARCH) libfast 98 $(RANLIB) $(PDIR)/libpetscfortran.a 99 -@echo "Completed compiling Fortran interface library" 100 -@echo "------------------------------------------" 101 102ranlib: 103 $(RANLIB) $(PDIR)/*.a 104 105# Deletes PETSc libraries 106deletelibs: 107 -$(RM) -f $(PDIR)/*.a $(PDIR)/complex/* $(PDIR)/c++/* 108 109# Deletes man pages (xman version) 110deletemanpages: 111 $(RM) -f $(PETSC_DIR)/Keywords $(PETSC_DIR)/docs/man/man*/* 112 113# Deletes man pages (HTML version) 114deletewwwpages: 115 $(RM) -f $(PETSC_DIR)/docs/www/man*/* $(PETSC_DIR)/docs/www/www.cit \ 116 $(PETSC_DIR)/docs/www/man*.html 117 118# Deletes man pages (LaTeX version) 119deletelatexpages: 120 $(RM) -f $(PETSC_DIR)/docs/tex/rsum/*sum*.tex 121 122# To access the tags in emacs, type M-x visit-tags-table and specify 123# the file petsc/TAGS. Then, to move to where a PETSc function is 124# defined, enter M-. and the function name. To search for a string 125# and move to the first occurrence, use M-x tags-search and the string. 126# To locate later occurrences, use M-, 127 128# Builds all etags files 129alletags: 130 -make etags 131 -make etags_noexamples 132 -make etags_makefiles 133 134# Builds the basic etags file. This should be employed by most users. 135etags: 136 $(RM) TAGS 137 etags -f TAGS src/*/impls/*/*.h src/*/impls/*/*/*.h 138 etags -a -f TAGS src/*/examples/*.c src/*/examples/*/*.c 139 etags -a -f TAGS src/*/*.h src/*/*/*.h src/*/interface/*.c 140 etags -a -f TAGS src/*/src/*.c src/*/impls/*/*.c 141 etags -a -f TAGS src/*/impls/*/*/*.c 142 etags -a -f TAGS src/contrib/*/*.c src/contrib/*/src/*.c 143 etags -a -f TAGS src/contrib/*/examples/*.c src/contrib/*/src/*/*.c 144 etags -a -f TAGS src/contrib/*/src/*.h 145 etags -a -f TAGS include/*.h include/pinclude/*.h bmake/common 146 etags -a -f TAGS include/FINCLUDE/*.h 147 etags -a -f TAGS src/*/impls/*.c src/*/utils/*.c 148 etags -a -f TAGS makefile src/*/src/makefile 149 etags -a -f TAGS src/*/interface/makefile src/makefile 150 etags -a -f TAGS src/*/impls/makefile src/*/impls/*/makefile 151 etags -a -f TAGS src/*/utils/makefile src/*/examples/makefile 152 etags -a -f TAGS src/*/examples/*/makefile 153 etags -a -f TAGS src/*/makefile src/*/impls/*/*/makefile 154 etags -a -f TAGS src/contrib/*/makefile src/contrib/*/src/makefile 155 etags -a -f TAGS src/contrib/*/src/*/makefile 156 etags -a -f TAGS src/fortran/makefile src/fortran/auto/makefile 157 etags -a -f TAGS src/fortran/custom/makefile 158 etags -a -f TAGS include/makefile include/*/makefile 159 etags -a -f TAGS bmake/common bmake/sun4/sun4* bmake/rs6000/rs6000* 160 etags -a -f TAGS bmake/solaris/solaris* 161 etags -a -f TAGS bmake/IRIX/IRIX* bmake/freebsd/freebsd* 162 etags -a -f TAGS bmake/hpux/hpux* bmake/alpha/alpha* 163 etags -a -f TAGS bmake/t3d/t3d* bmake/paragon/paragon* 164 etags -a -f TAGS src/fortran/custom/*.c src/fortran/auto/*.c 165 etags -a -f TAGS src/benchmarks/*.c src/*/examples/*.F src/fortran/custom/*.F 166 etags -a -f TAGS docs/tex/manual/routin.tex docs/tex/manual/manual.tex 167 etags -a -f TAGS docs/tex/manual/manual_tex.tex 168 etags -a -f TAGS docs/tex/manual/intro.tex docs/tex/manual/part1.tex 169 etags -a -f TAGS docs/tex/manual/part2.tex 170 etags -a -f TAGS docs/tex/manual/intro.tex docs/makefile 171 chmod g+w TAGS 172 173# Builds the etags file that excludes the examples directories 174etags_noexamples: 175 $(RM) TAGS_NO_EXAMPLES 176 etags -f TAGS_NO_EXAMPLES src/*/impls/*/*.h src/*/impls/*/*/*.h 177 etags -a -f TAGS_NO_EXAMPLES src/*/*.h src/*/*/*.h src/*/interface/*.c 178 etags -a -f TAGS_NO_EXAMPLES src/*/src/*.c src/*/impls/*/*.c 179 etags -a -f TAGS_NO_EXAMPLES src/*/impls/*/*/*.c 180 etags -a -f TAGS_NO_EXAMPLES src/contrib/*/*.c src/contrib/*/src/*.c 181 etags -a -f TAGS_NO_EXAMPLES src/contrib/*/src/*/*.c src/contrib/*/src/*.h 182 etags -a -f TAGS_NO_EXAMPLES include/*.h include/pinclude/*.h 183 etags -a -f TAGS_NO_EXAMPLES include/FINCLUDE/*.h 184 etags -a -f TAGS_NO_EXAMPLES bmake/common 185 etags -a -f TAGS_NO_EXAMPLES src/*/impls/*.c src/*/utils/*.c 186 etags -a -f TAGS_NO_EXAMPLES makefile src/*/src/makefile 187 etags -a -f TAGS_NO_EXAMPLES src/*/interface/makefile src/makefile 188 etags -a -f TAGS_NO_EXAMPLES src/*/impls/makefile src/*/impls/*/makefile 189 etags -a -f TAGS_NO_EXAMPLES src/*/utils/makefile 190 etags -a -f TAGS_NO_EXAMPLES src/*/makefile src/*/impls/*/*/makefile 191 etags -a -f TAGS_NO_EXAMPLES src/contrib/*/makefile src/contrib/*/src/makefile 192 etags -a -f TAGS_NO_EXAMPLES src/contrib/*/src/*/makefile 193 etags -a -f TAGS_NO_EXAMPLES src/fortran/makefile src/fortran/auto/makefile 194 etags -a -f TAGS_NO_EXAMPLES src/fortran/custom/makefile 195 etags -a -f TAGS_NO_EXAMPLES include/makefile include/*/makefile 196 etags -a -f TAGS_NO_EXAMPLES bmake/common bmake/sun4/sun4* 197 etags -a -f TAGS_NO_EXAMPLES bmake/rs6000/rs6000* 198 etags -a -f TAGS_NO_EXAMPLES bmake/solaris/solaris* 199 etags -a -f TAGS_NO_EXAMPLES bmake/IRIX/IRIX* bmake/freebsd/freebsd* 200 etags -a -f TAGS_NO_EXAMPLES bmake/hpux/hpux* bmake/alpha/alpha* 201 etags -a -f TAGS_NO_EXAMPLES bmake/t3d/t3d* bmake/paragon/paragon* 202 etags -a -f TAGS_NO_EXAMPLES src/fortran/auto/*.c 203 etags -a -f TAGS_NO_EXAMPLES src/fortran/custom/*.c src/fortran/custom/*.F 204 etags -a -f TAGS_NO_EXAMPLES docs/tex/manual/routin.tex 205 etags -a -f TAGS_NO_EXAMPLES docs/tex/manual/manual.tex 206 etags -a -f TAGS_NO_EXAMPLES docs/tex/manual/intro.tex 207 etags -a -f TAGS_NO_EXAMPLES docs/tex/manual/part1.tex 208 etags -a -f TAGS_NO_EXAMPLES docs/tex/manual/part2.tex 209 etags -a -f TAGS_NO_EXAMPLES docs/makefile 210 chmod g+w TAGS_NO_EXAMPLES 211 212# Builds the etags file for makefiles 213etags_makefiles: 214 $(RM) TAGS_MAKEFILES 215 etags -a -f TAGS_MAKEFILES bmake/common 216 etags -a -f TAGS_MAKEFILES makefile src/*/src/makefile 217 etags -a -f TAGS_MAKEFILES src/*/interface/makefile src/makefile 218 etags -a -f TAGS_MAKEFILES src/*/impls/makefile src/*/impls/*/makefile 219 etags -a -f TAGS_MAKEFILES src/*/utils/makefile src/*/interface/makefile 220 etags -a -f TAGS_MAKEFILES src/*/makefile src/*/impls/*/*/makefile 221 etags -a -f TAGS_MAKEFILES src/*/examples/makefile src/*/examples/*/makefile 222 etags -a -f TAGS_MAKEFILES src/fortran/makefile src/fortran/auto/makefile 223 etags -a -f TAGS_MAKEFILES src/contrib/*/makefile src/contrib/*/src/makefile 224 etags -a -f TAGS_MAKEFILES src/contrib/*/src/*/makefile 225 etags -a -f TAGS_MAKEFILES src/fortran/custom/makefile 226 etags -a -f TAGS_MAKEFILES include/makefile include/*/makefile 227 etags -a -f TAGS_MAKEFILES bmake/common bmake/sun4/sun4* 228 etags -a -f TAGS_MAKEFILES bmake/rs6000/rs6000* 229 etags -a -f TAGS_MAKEFILES bmake/solaris/solaris* 230 etags -a -f TAGS_MAKEFILES bmake/IRIX/IRIX* bmake/freebsd/freebsd* 231 etags -a -f TAGS_MAKEFILES bmake/hpux/hpux* bmake/alpha/alpha* 232 etags -a -f TAGS_MAKEFILES bmake/t3d/t3d* bmake/paragon/paragon* 233 etags -a -f TAGS_MAKEFILES docs/makefile 234 chmod g+w TAGS_MAKEFILES 235 236# ------------------------------------------------------------------ 237# 238# All remaining actions are intended for PETSc developers only. 239# PETSc users should not generally need to use these commands. 240# 241 242# Builds all versions of the man pages 243allmanpages: deletemanpages deletewwwpages deletelatexpages 244 -make ACTION=manpages tree 245 -make ACTION=latexpages tree 246 -make ACTION=wwwpages_buildcite tree 247 -make ACTION=wwwpages tree 248 -maint/wwwman 249 250allwwwpages: deletewwwpages 251 -make ACTION=wwwpages_buildcite tree 252 -make ACTION=wwwpages tree 253 -maint/wwwman 254 255alllatexpages: deletelatexpages 256 -make ACTION=latexpages tree 257 258# Builds Fortran stub files 259allfortranstubs: 260 -@include/finclude/generateincludes 261 -@$(RM) -f $(PETSC_DIR)/src/fortran/auto/*.c 262 -make ACTION=fortranstubs tree 263 chmod g+w $(PETSC_DIR)/src/fortran/auto/*.c 264 265 266