# Copyright 1990 Robert Forsman
# GNU General Public License

#
# Where is your XPM library stored?
#
XPM=-L../../lib -lXpm

#
# Insert the various X libs here
#
XLIBS=-L/usr/lib/X11R5 -lXaw -lXmu -lXt -lXext ${XPM} -lX11

#
# Please modify this to reflect the location of the IntrinsicI.h mit internal
# header file.  IntrinsicP.h will probably be in the X11 source tree.
#
INCLUDEFLAGS=-I. -I../../lib -I/net/src/X11R5/mit/lib/Xt

CC=cc
CFLAGS= ${INCLUDEFLAGS}

# end likely site specific configuration

OBJS= backgroundtest.o StrToPmap.o LocPixmap.o

all	: backgroundtest

backgroundtest	: ${OBJS}
	${CC} -o $@ ${OBJS} ${XLIBS}

clean:
	rm -f ${OBJS} core

