# Makefile for stand-alone version of MRW 2006 DPDFs.
# Comments to watt(at)hep.ucl.ac.uk

FC=g77
CC=g77
FFLAGS=-O2 -Wall
LDFLAGS=
LOADLIBES=-L/cern/pro/lib  # Set location of CERNLIB here.
LDLIBS=-lpdflib804 -lmathlib -lkernlib
EXEC=example

default: $(EXEC)

example: mrw2006.o

clean:
	-rm -f *.o *~ $(EXEC)
