
all: rootwin overspot onspot offspot

rootwin: rootwin.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o rootwin rootwin.c

overspot: overspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o overspot overspot.c

onspot: onspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o onspot onspot.c

offspot: offspot.c
	gcc -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -o offspot offspot.c

clean:
	rm -f rootwin overspot onspot offspot *.o *.bak
