#	@(#)Makefile	1.5	ULTRIX	9/2/88

DESTDIR=
UIL = ${DESTDIR}/usr/bin/dxuil

.SUFFIXES: .uil .uid

.uil.uid:
	${UIL} -o $@ $<
CFLAGS = -g -I. 

LIBS = -ldwt  -lX11

LIBRARIES = -lX11 -lm 

all: helper helper.uid

helper.uid: helper.uil

helper: helper.o 
	${CC}  ${CFLAGS} -o helper helper.o ${LIBS}

clean:
	rm -f *.o *.uid helper \#* *~ core
