# makefile to compile my xtoys:
batch: xising xpotts xfires xsand xautomalab

xising: xising.c
	gcc -O -o xising xising.c -lm -lX11
	chmod 755 xising
xpotts: xpotts.c
	gcc -O -o xpotts xpotts.c -lm -lX11
	chmod 755 xpotts
xfires: xfires.c
	gcc -O -o xfires xfires.c -lX11
	chmod 755 xfires
xsand: xsand.c
	gcc -O -o xsand xsand.c -lX11
	chmod 755 xsand
xautomalab: xautomalab.c
	gcc -I/usr/athena/include -O -o xautomalab -g xautomalab.c -L/usr/athena/lib -lX11
	chmod 755 xautomalab
