# Makefile for the X wrapper program

CFLAGS=-O2
LDFLAGS=-s

.PHONY:	clean

X:	X.o

clean:
	rm -f *.o *~ X
