Makefile.html CLAWPACK  
 Source file:   Makefile
 Directory:   /Users/rjl/git/rjleveque/clawpack-4.6.3/apps/burgers/2d/rp
 Converted:   Mon Jan 21 2013 at 20:15:25   using clawcode2html
 This documentation file will not reflect any later changes in the source file.

 

# Library version of Makefile
# ---------------------------

# Only "make .objs" and "make .htmls" are useful in this directory.

# Makefile for Clawpack code in this directory.
# This version only sets the local files and frequently changed
# options, and then includes the standard makefile pointed to by CLAWMAKE.
CLAWMAKE = $(CLAW)/util/Makefile.common

# See the above file for details and a list of make options, or type
#   make .help
# at the unix prompt.


# Environment variable FC should be set to fortran compiler, e.g. gfortran
FC ?= gfortran   # default if not set as environment variable
# Add any desired compiler flags such as -g here:
FFLAGS =

CLAW_LIB = $(shell pwd)

CLAW_SOURCES = \
  $(CLAW_LIB)/rpn2bu.f \
  $(CLAW_LIB)/rpt2bu.f \

default: .objs


#-------------------------------------------------------------------
# Include Makefile containing standard definitions and make options:
include $(CLAWMAKE)


### DO NOT remove this line - make depends on it ###