CFLAGS=	-I../sunlib -DX11 -DBSD -g
LIBS=	../sunlib/libj.a -lX11
PROGS=	bounce ball clock

all: $PROGS

bounce: bounce.o
	cc -s -o bounce bounce.o $LIBS

ball: ball.o
	cc -s -o ball ball.o $LIBS

clock: clock.o
	cc -g -o clock clock.o $LIBS
