
LIBS = -lm
OBJS = rand.o smpl.o
smpl:
	cc -c rand.c ; cc -c smpl.c
petri: petri.c
	cc petri.c $(OBJS) $(LIBS) -o petri
tarsmpl: 
	tar cvf smpl.tar README Makefile bmeans.c bwa.c bws1.c bws2.c bws3.c csqm.c ether ether.c lam.c mm1q1 mm1q1.c mm1q2.c mva.c rand.c smpl.c smpl.h stat.c
tarpetri:
	tar cvf petri.tar README petri.c phil.dat

