src/Makefile
author Forrest Hoffman <forrest@climatemodeling.org>
Wed, 26 Sep 2007 17:50:53 -0400
changeset 0 5fda18b64dcb
permissions -rw-r--r--
Initial commit of the Fortran-90 version of the Fractal Realizer.
     1 FC=gfortran
     2 FFLAGS=-O
     3 SRCS=realizer_mod.f90 realizer_pro.f90
     4 OBJS=realizer_mod.o realizer_pro.o
     5 
     6 .SUFFIXES : .o .f90
     7 
     8 .f90.o:
     9 	$(FC) $(FFLAGS) -c $<
    10 
    11 realizer: $(OBJS)
    12 	$(FC) $(FFLAGS) -o $@ $(OBJS)
    13 
    14 install: realizer
    15 	cp -p $< /usr/local/bin/
    16 
    17 clean:
    18 	rm -f realizer realizer_mod.mod realizer_mod.o realizer_pro.o core
    19