#
#              makefile : Multiple Path Change Point
#                             Data Augmentation
#                           Poisson Distribution
#
PARTS = mpcp.o \
	setup.o \
	header.o \
	itp.o \
	post.o \
	upd.o \
	gen.o \
	util.o  

mpcpp:   $(PARTS)
	f77 -fast -o mpcpp $(PARTS)

mpcp.o:  mpcp.f
	f77 -fast -c -u mpcp.f

setup.o:  setup.f
	f77 -fast -c -u setup.f

header.o:  header.f
	f77 -fast -c -u header.f

itp.o:  itp.f
	f77 -fast -c -u itp.f

post.o:  post.f
	f77 -fast -c -u post.f

upd.o:  upd.f
	f77 -fast -c -u upd.f

gen.o:  gen.f
	f77 -fast -c -u gen.f

util.o:  util.f
	f77 -fast -c -u util.f

