# Gcc usually works better if you have it.
#CC	= gcc
CC	= cc

# Uncomment this if you use X11 Release 3 instead of Release 4.
#XVERSION = -DX11R3

# If the path to Xlib.h needs to be set explicitly...
#XINC	=

# If you are on a Stardent Titan, then this will help it find random().
#BSD	= -43

CFLAGS	= -O ${BSD} -I. ${XVERSION}

LIBS	= -lX11

xswarm: xswarm.c
	$(CC) $(CFLAGS) -o xswarm xswarm.c $(LIBS)

