Skip to content

Commit

Permalink
Changed the makefile so it compiles on Hopper machine at NERSC.
Browse files Browse the repository at this point in the history
  • Loading branch information
schumakov committed Jan 26, 2010
1 parent e2159c0 commit eb87ad2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@
MPIF90 = blah

# Franklin cluster, NERSC
ifeq ($(HIT3D_MACHINE), franklin)
ifeq ($(NERSC_HOST), franklin)
MPIF90 = ftn

FCFLAGS = -target=linux -i8 -r8 -O4 -c
LDFLAGS = -target=linux -i8 -r8 -O4 -lfftw3
FCFLAGS_F77 = -Mextend
endif

# Hopper cluster, NERSC
ifeq ($(NERSC_HOST), hopper)
MPIF90 = ftn

FCFLAGS = -target=linux -i8 -r8 -O4 -c
Expand Down

0 comments on commit eb87ad2

Please sign in to comment.