# # $Id: Makefile,v 1.5 1999/11/09 20:14:30 nathanm Exp $ # .PHONY: all clean all: xwinwrap.so xwinwrap.o: xwinwrap.c gcc -O -D_REENTRANT -c -fpic xwinwrap.c xwinwrap.so: xwinwrap.o gcc -O -o xwinwrap.so -shared -nostdlib xwinwrap.o -ldl clean: rm -f xwinwrap.o xwinwrap.so