#----------------------------------------------------------------------------
#    Rocket Center of Pressure (cp) calculator - version 1.2 
#                                                June 1993
#----------------------------------------------------------------------------
#

SUFFIXES = .o .c 
.SUFFIXES: $(SUFFIXES)

.c.o:
	cc -O -c $*.c

all:	cp

cp:	cp.o
	cc -o cp cp.o -lm

cp.o: help.h

