
FILES = xpixmapshim/shim.c \
	xpixmapshim/Makefile


shim.so: shim.o
	gcc -shared shim.o -ldl -o shim.so


shim.o: shim.c
	gcc -c -g -Wall -ansi shim.c



tarball:
	cd .. ; \
	tar cvf shim.tar $(FILES) ; \
	gzip shim.tar ; \
	mv shim.tar.gz xpixmapshim

clean:
	rm -f *.o *.so *~
