# Makefile for xbgsun
#
# OPTIONS may have one of the following values:
#   -DIMAGE uses XImage manipulation for fast image loading.  may not work
#           on all systems.
#
OPTIONS= -DIMAGE
CFLAGS= -O $(OPTIONS)
CC= cc
OBJS= xbgsun.o
LIBS= -lX11

xbgsun: $(OBJS)
	cc -o xbgsun $(CFLAGS) $(OBJS) $(LIBS)

clean:
	rm -f xbgsun xbgsun.o

