#
#   Makefile for cptape
#

OBJ=	main.o
SRC=	main.c

CFLAGS=	-O

cptape:	$(OBJ)
	cc $(OBJ) -o cptape

