COPT = -Wall

PROGLIST = move ncan

all:	$(PROGLIST)

udrl:  udrl.c
	$(CC) $(COPT) $< -o $@

clean:
	@rm -f *.o $(PROGLIST)

