Skip to content
Snippets Groups Projects
Makefile_DavidWhipp 270 B
Newer Older
  • Learn to ignore specific revisions
  • .SUFFIXES:.out .o .s .c .F .f .f90 .e .r .y .yr .ye .l .p .sh .csh .h
    
    include ../Makefile.cray
    
    OBJECTS = postprocessing.o ../toolbox.o
    
    LIBVISU = \
    -L$(PGPLOT) -lpgplot \
    -L$(X11) -lX11 
    
    .f90.o:
    	$(F90) -c  $*.f90
    
    pp:	$(OBJECTS)
    	$(F90) $(OBJECTS) $(LIBVISU) -o pp