1# $Id: makefile,v 1.288 1999/05/10 16:28:49 balay Exp bsmith $ 2# 3# This is the makefile for installing PETSc. See the file 4# docs/installation.html for directions on installing PETSc. 5# See also bmake/common for additional commands. 6# 7ALL: all 8 9DIRS = src include docs 10 11include ${PETSC_DIR}/bmake/${PETSC_ARCH}/base 12 13# 14# Basic targets to build PETSc libraries. 15# all : builds the c, fortran, and f90 libraries 16all : info chkpetsc_dir deletelibs build_c build_fortran shared 17# 18# Prints information about the system and version of PETSc being compiled 19# 20info: 21 -@echo "==========================================" 22 -@echo " " 23 -@echo "See docs/troubleshooting.html and docs/bugreporting.html" 24 -@echo "for help with installation problems. Please send EVERYTHING" 25 -@echo "printed out below when reporting problems" 26 -@echo " " 27 -@echo "To subscribe to the PETSc users mailing list, send mail to " 28 -@echo "majordomo@mcs.anl.gov with the message: " 29 -@echo "subscribe petsc-users" 30 -@echo " " 31 -@echo "==========================================" 32 -@echo On `date` on `hostname` 33 -@echo Machine characteristics: `uname -a` 34 -@echo "-----------------------------------------" 35 -@echo "Using C compiler: ${CC} ${COPTFLAGS} ${CCPPFLAGS}" 36 -@if [ -n "${CCV}" -a "${CCV}" != "unknown" ] ; then \ 37 echo "Compiler version:" `${CCV}` ; fi 38 -@echo "Using Fortran compiler: ${FC} ${FOPTFLAGS} ${FCPPFLAGS}" 39 -@echo "-----------------------------------------" 40 -@grep PETSC_VERSION_NUMBER include/petsc.h | sed "s/........//" 41 -@echo "-----------------------------------------" 42 -@echo "Using PETSc flags: ${PETSCFLAGS} ${PCONF}" 43 -@echo "-----------------------------------------" 44 -@echo "Using configuration flags:" 45 -@grep "define " bmake/${PETSC_ARCH}/petscconf.h 46 -@echo "-----------------------------------------" 47 -@echo "Using include paths: ${PETSC_INCLUDE}" 48 -@echo "-----------------------------------------" 49 -@echo "Using PETSc directory: ${PETSC_DIR}" 50 -@echo "Using PETSc arch: ${PETSC_ARCH}" 51 -@echo "------------------------------------------" 52 -@echo "Using C linker: ${CLINKER}" 53 -@echo "Using Fortran linker: ${FLINKER}" 54 -@echo "Using libraries: ${PETSC_LIB}" 55 -@echo "==========================================" 56 57# 58# Builds the PETSc libraries 59# This target also builds fortran77 and f90 interface 60# files. (except compiling *.F files) 61# 62build_c: 63 -@echo "BEGINNING TO COMPILE LIBRARIES IN ALL DIRECTORIES" 64 -@echo "=========================================" 65 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=libfast tree 66 -@cd ${PETSC_DIR}/src/sys/src/time ; \ 67 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} rs6000_asmtime 68 ${RANLIB} ${PDIR}/*.a 69 -@chmod g+w ${PDIR}/*.a 70 -@echo "Completed building libraries" 71 -@echo "=========================================" 72 73# 74# Builds PETSc Fortran source 75# Note: libfast cannot run on .F files on certain machines, so we 76# use libf to compile the fortran source files. 77# 78build_fortran: 79 -@echo "BEGINNING TO COMPILE FORTRAN SOURCE" 80 -@echo "=========================================" 81 -@cd src/fortran/custom; \ 82 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} libf clean 83 -@cd src/fortran/kernels; \ 84 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} libf clean 85 ${RANLIB} ${PDIR}/libpetscfortran.a 86 ${RANLIB} ${PDIR}/libpetsc.a 87 -@chmod g+w ${PDIR}/*.a 88 -@echo "Completed compiling Fortran source" 89 -@echo "=========================================" 90 91petscblas: info chkpetsc_dir 92 -${RM} -f ${PDIR}/libpetscblas.* 93 -@echo "BEGINNING TO COMPILE C VERSION OF BLAS AND LAPACK" 94 -@echo "=========================================" 95 -@cd src/blaslapack; \ 96 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=libfast tree 97 ${RANLIB} ${PDIR}/libpetscblas.a 98 -@chmod g+w ${PDIR}/*.a 99 -@echo "Completed compiling C version of BLAS and LAPACK" 100 -@echo "=========================================" 101 102 103# Builds PETSc test examples for a given BOPT and architecture 104testexamples: info chkopts 105 -@echo "BEGINNING TO COMPILE AND RUN TEST EXAMPLES" 106 -@echo "Due to different numerical round-off on certain" 107 -@echo "machines some of the numbers may not match exactly." 108 -@echo "=========================================" 109 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} \ 110 ACTION=testexamples_1 tree 111 -@echo "Completed compiling and running test examples" 112 -@echo "=========================================" 113 114# Builds PETSc test examples for a given BOPT and architecture 115testfortran: info chkopts 116 -@echo "BEGINNING TO COMPILE AND RUN FORTRAN TEST EXAMPLES" 117 -@echo "=========================================" 118 -@echo "Due to different numerical round-off on certain" 119 -@echo "machines or the way Fortran formats numbers" 120 -@echo "some of the results may not match exactly." 121 -@echo "=========================================" 122 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} \ 123 ACTION=testexamples_3 tree 124 -@echo "Completed compiling and running Fortran test examples" 125 -@echo "=========================================" 126 127# Builds PETSc test examples for a given BOPT and architecture 128testexamples_uni: info chkopts 129 -@echo "BEGINNING TO COMPILE AND RUN TEST UNI-PROCESSOR EXAMPLES" 130 -@echo "Due to different numerical round-off on certain" 131 -@echo "machines some of the numbers may not match exactly." 132 -@echo "=========================================" 133 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} \ 134 ACTION=testexamples_4 tree 135 -@echo "Completed compiling and running uniprocessor test examples" 136 -@echo "=========================================" 137testfortran_uni: info chkopts 138 -@echo "BEGINNING TO COMPILE AND RUN TEST UNI-PROCESSOR FORTRAN EXAMPLES" 139 -@echo "Due to different numerical round-off on certain" 140 -@echo "machines some of the numbers may not match exactly." 141 -@echo "=========================================" 142 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} \ 143 ACTION=testexamples_9 tree 144 -@echo "Completed compiling and running uniprocessor fortran test examples" 145 -@echo "=========================================" 146matlabcodes: 147 -@echo "BEGINNING TO COMPILE MATLAB INTERFACE" 148 -@cd src/sys/src/viewer/impls/socket/matlab; ${OMAKE} BOPT=g matlabcodes PETSC_ARCH=${PETSC_ARCH} 149 150# Ranlib on the libraries 151ranlib: 152 ${RANLIB} ${PDIR}/*.a 153 154# Deletes PETSc libraries 155deletelibs: chkopts_basic 156 -${RM} -f ${PDIR}/* 157 158 159# ------------------------------------------------------------------ 160# 161# All remaining actions are intended for PETSc developers only. 162# PETSc users should not generally need to use these commands. 163# 164 165# To access the tags in EMACS, type M-x visit-tags-table and specify 166# the file petsc/TAGS. 167# 1) To move to where a PETSc function is defined, enter M-. and the 168# function name. 169# 2) To search for a string and move to the first occurrence, 170# use M-x tags-search and the string. 171# To locate later occurrences, use M-, 172# Builds all etags files 173alletags: 174 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSDIR=${PETSC_DIR} etags 175 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSDIR=${PETSC_DIR} etags_complete 176 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSDIR=${PETSC_DIR} etags_noexamples 177 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSDIR=${PETSC_DIR} etags_examples 178 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSDIR=${PETSC_DIR} etags_makefiles 179# Builds the basic etags file. This should be employed by most users. 180etags: 181 -${RM} ${TAGSDIR}/TAGS 182 -touch ${TAGSDIR}/TAGS 183 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_sourcec alltree 184 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_sourceh alltree 185 -cd src/fortran; ${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_sourcef alltree 186 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_examplesc alltree 187 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_examplesf alltree 188 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_examplesch alltree 189 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_examplesfh alltree 190 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS ACTION=etags_makefile alltree 191 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS etags_bmakefiles 192 -chmod g+w TAGS 193# Builds complete etags list; only for PETSc developers. 194etags_complete: 195 -${RM} ${TAGSDIR}/TAGS_COMPLETE 196 -touch ${TAGSDIR}/TAGS_COMPLETE 197 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_sourcec alltree 198 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_sourceh alltree 199 -cd src/fortran; ${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_sourcef alltree 200 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_examplesc alltree 201 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_examplesf alltree 202 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_examplesch alltree 203 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_examplesfh alltree 204 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_makefile alltree 205 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE etags_bmakefiles 206 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_docs alltree 207 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_COMPLETE ACTION=etags_scripts alltree 208 -chmod g+w TAGS_COMPLETE 209# Builds the etags file that excludes the examples directories 210etags_noexamples: 211 -${RM} ${TAGSDIR}/TAGS_NO_EXAMPLES 212 -touch ${TAGSDIR}/TAGS_NO_EXAMPLES 213 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES ACTION=etags_sourcec alltree 214 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES ACTION=etags_sourceh alltree 215 -cd src/fortran; ${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES ACTION=etags_sourcef alltree 216 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES ACTION=etags_makefile alltree 217 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES etags_bmakefiles 218 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_NO_EXAMPLES ACTION=etags_docs alltree 219 -chmod g+w TAGS_NO_EXAMPLES 220# Builds the etags file for makefiles 221etags_makefiles: 222 -${RM} ${TAGSDIR}/TAGS_MAKEFILES 223 -touch ${TAGSDIR}/TAGS_MAKEFILES 224 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_MAKEFILES ACTION=etags_makefile alltree 225 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_MAKEFILES etags_bmakefiles 226 -chmod g+w TAGS_MAKEFILES 227# Builds the etags file for examples 228etags_examples: 229 -${RM} ${TAGSDIR}/TAGS_EXAMPLES 230 -touch ${TAGSDIR}/TAGS_EXAMPLES 231 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_EXAMPLES ACTION=etags_examplesc alltree 232 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_EXAMPLES ACTION=etags_examplesch alltree 233 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_EXAMPLES ACTION=etags_examplesf alltree 234 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_EXAMPLES ACTION=etags_examplesfh alltree 235 -chmod g+w TAGS_EXAMPLES 236etags_fexamples: 237 -${RM} ${TAGSDIR}/TAGS_FEXAMPLES 238 -touch ${TAGSDIR}/TAGS_FEXAMPLES 239 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_FEXAMPLES ACTION=etags_examplesf alltree 240 -${OMAKE} PETSC_DIR=${PETSC_DIR} TAGSFILE=${TAGSDIR}/TAGS_EXAMPLES ACTION=etags_examplesfh alltree 241 -chmod g+w TAGS_FEXAMPLES 242# 243# These are here for the target allci and allco, and etags 244# 245 246BMAKEFILES = bmake/common* bmake/*/base bmake/*/base_variables bmake/*/base.site \ 247 bmake/*/petscconf.h bmake/win32/makefile.dos bin/config/base*.in 248DOCS = bmake/readme bmake/petscconf.defs 249SCRIPTS = maint/addlinks maint/builddist maint/buildlinks maint/wwwman \ 250 maint/xclude maint/crontab \ 251 maint/autoftp include/foldinclude/generateincludes 252 253# Builds all the documentation - should be done every night 254alldoc: allmanpages 255 cd docs/tex/manual; ${OMAKE} manual.dvi manual.ps manual.html splitmanual.html 256 257# Deletes man pages (HTML version) 258deletemanualpages: 259 ${RM} -f ${PETSC_DIR}/docs/manualpages/*/*.html \ 260 ${PETSC_DIR}/docs/manualpages/manualpages.cit 261 262# Deletes man pages (LaTeX version) 263deletelatexpages: 264 ${RM} -f ${PETSC_DIR}/docs/tex/rsum/*sum*.tex 265 266# Builds all versions of the man pages 267allmanpages: allmanualpages alllatexpages 268allmanualpages: deletemanualpages 269 -${OMAKE} ACTION=manualpages_buildcite tree 270 -${OMAKE} ACTION=manualpages tree 271 -maint/wwwindex.py ${PETSC_DIR} 272 -maint/examplesindex.tcl 273 -maint/htmlkeywords.tcl 274 -@chmod g+w docs/manualpages/*/*.html 275 276alllatexpages: deletelatexpages 277 -${OMAKE} ACTION=latexpages tree 278 -@chmod g+w docs/tex/rsum/* 279 280# Builds Fortran stub files 281allfortranstubs: 282 -@include/foldinclude/generateincludes 283 -@${RM} -f src/fortran/auto/*.c 284 -${OMAKE} ACTION=fortranstubs tree 285 -@cd src/fortran/auto; ${OMAKE} -f makefile fixfortran 286 chmod g+w src/fortran/auto/*.c 287 288allci: 289 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=ci alltree 290 291allco: 292 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=co alltree 293 294# 295# The commands below are for generating ADIC versions of the code; 296# they are not currently used. 297# 298alladicignore: 299 -@${RM} ${PDIR}/adicignore 300 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=adicignore tree 301 302alladic: 303 -@echo "Beginning to compile ADIC source code in all directories" 304 -@echo "Using ADIC compiler: ${ADIC_CC} ${CCPPFLAGS}" 305 -@echo "=========================================" 306 -@cd include ; \ 307 ${ADIC_CC} -s -f 1 ${CCPPFLAGS} petsc.h 308 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=adic tree 309 -@cd src/inline ; \ 310 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} adic 311 -@cd src/blaslapack ; \ 312 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=adic tree 313 314alladiclib: 315 -@echo "Beginning to compile ADIC libraries in all directories" 316 -@echo "Using compiler: ${CC} ${COPTFLAGS}" 317 -@echo "-----------------------------------------" 318 -@echo "Using PETSc flags: ${PETSCFLAGS} ${PCONF}" 319 -@echo "-----------------------------------------" 320 -@echo "Using configuration flags:" 321 -@grep "define " bmake/${PETSC_ARCH}/petscconf.h 322 -@echo "-----------------------------------------" 323 -@echo "Using include paths: ${PETSC_INCLUDE}" 324 -@echo "-----------------------------------------" 325 -@echo "Using PETSc directory: ${PETSC_DIR}" 326 -@echo "Using PETSc arch: ${PETSC_ARCH}" 327 -@echo "=========================================" 328 -@${RM} -f ${PDIR}/*adic.a 329 -@${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=adiclib tree 330 -@cd src/blaslapack ; \ 331 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} ACTION=adiclib tree 332 -@cd src/adic/src ; \ 333 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} lib 334 335# ------------------------------------------------------------------------------- 336# 337# Some macros to check if the fortran interface is up-to-date. 338# 339countfortranfunctions: 340 -@cd ${PETSC_DIR}/src/fortran; egrep '^void' custom/*.c auto/*.c | \ 341 cut -d'(' -f1 | tr -s ' ' | cut -d' ' -f2 | uniq | egrep -v "(^$$|Petsc)" | \ 342 sed "s/_$$//" | sort > /tmp/countfortranfunctions 343 344countcfunctions: 345 -@ grep extern ${PETSC_DIR}/include/*.h *.h | grep "(" | tr -s ' ' | \ 346 cut -d'(' -f1 | cut -d' ' -f3 | grep -v "\*" | tr -s '\012' | \ 347 tr 'A-Z' 'a-z' | sort > /tmp/countcfunctions 348 349difffortranfunctions: countfortranfunctions countcfunctions 350 -@echo -------------- Functions missing in the fortran interface --------------------- 351 -@diff /tmp/countcfunctions /tmp/countfortranfunctions | grep "^<" | cut -d' ' -f2 352 -@echo ----------------- Functions missing in the C interface ------------------------ 353 -@diff /tmp/countcfunctions /tmp/countfortranfunctions | grep "^>" | cut -d' ' -f2 354 -@${RM} /tmp/countcfunctions /tmp/countfortranfunctions 355 356checkbadfortranstubs: 357 -@echo "=========================================" 358 -@echo "Functions with MPI_Comm as an Argument" 359 -@echo "=========================================" 360 -@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'MPI_Comm' | \ 361 tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3 362 -@echo "=========================================" 363 -@echo "Functions with a String as an Argument" 364 -@echo "=========================================" 365 -@cd ${PETSC_DIR}/src/fortran/auto; grep '^void' *.c | grep 'char \*' | \ 366 tr -s ' ' | tr -s ':' ' ' |cut -d'(' -f1 | cut -d' ' -f1,3 367 -@echo "=========================================" 368 -@echo "Functions with Pointers to PETSc Objects as Argument" 369 -@echo "=========================================" 370 -@cd ${PETSC_DIR}/src/fortran/auto; \ 371 _p_OBJ=`grep _p_ ${PETSC_DIR}/include/*.h | tr -s ' ' | \ 372 cut -d' ' -f 3 | tr -s '\012' | grep -v '{' | cut -d'*' -f1 | \ 373 sed "s/_p_//g" | tr -s '\012 ' ' *|' ` ; \ 374 for OBJ in $$_p_OBJ; do \ 375 grep "$$OBJ \*" *.c | tr -s ' ' | tr -s ':' ' ' | \ 376 cut -d'(' -f1 | cut -d' ' -f1,3; \ 377 done 378# Builds noise routines (not yet publically available) 379# Note: libfast cannot run on .F files on certain machines, so we 380# use lib and check for errors here. 381noise: info chkpetsc_dir 382 -@echo "Beginning to compile noise routines" 383 -@echo "=========================================" 384 -@cd src/snes/interface/noise; \ 385 ${OMAKE} BOPT=${BOPT} PETSC_ARCH=${PETSC_ARCH} lib > trashz 2>&1; \ 386 grep -v clog trashz | grep -v "information sections" | \ 387 egrep -i '(Error|warning|Can)' >> /dev/null;\ 388 if [ "$$?" != 1 ]; then \ 389 cat trashz ; fi; ${RM} trashz 390 ${RANLIB} ${PDIR}/libpetscsnes.a 391 -@chmod g+w ${PDIR}/libpetscsnes.a 392 -@echo "Completed compiling noise routines" 393 -@echo "=========================================" 394 395