31 lines
659 B
Makefile
31 lines
659 B
Makefile
# Makro-Definitions:
|
|
|
|
OBJS = pphqq.o Cteq61Pdf.o
|
|
|
|
LIBS = /afs/psi.ch/user/s/spira/data_nobackup/LHAPDF/lib/libLHAPDF.so
|
|
|
|
#FFLAGS= -fno-emulate-complex -fno-automatic -ffixed-line-length-none -ffast-math -march=pentiumpro -malign-double -Wall -fno-silent
|
|
|
|
#LIBS = $(CERN)/libpdflib804.a $(CERN)/libpawlib.a $(CERN)/libgrafX11.a $(CERN)/libpacklib.a $(CERN)/libmathlib.a $(CERN)/libkernlib.a
|
|
|
|
#LIBS = `cernlib -v pro pdflib804,pawlib,graflib/X11,packlib,mathlib,kernlib`
|
|
|
|
#FC=f77
|
|
#FC=g77
|
|
|
|
#FFLAGS= -pc 64 -g77libs
|
|
|
|
#FC=pgf77
|
|
|
|
FC=gfortran
|
|
|
|
# Commands:
|
|
.f.o:
|
|
$(FC) -c $(FFLAGS) $*.f
|
|
|
|
pphqq: $(OBJS)
|
|
$(FC) $(FFLAGS) $(OBJS) $(LIBS) -o run
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|