all:

ctest:	ctest.c ctest.bin
	$(CC) -o ctest ctest.c
	./ctest

clean:
	$(RM)	*.o *.a \
		*.lst *.crf *.xrf *.obj *.map *.exe \
		*~ '#*#' \
		core zap zep zip zop zup foo bar

veryclean: clean
	$(RM)	*.com *.bin

install: all
