
# =======================================================================
# Makefile - Makefile for compiling warp and morph.
# Copyright (C) 1993 by George Wolberg
#
# Written by: George Wolberg, 1993
# ======================================================================

# These are all the files to be compiled.
MWARP	= warp.o  meshwarp.o util.o catmull.o
MORPH	= morph.o meshwarp.o util.o catmull.o

# These are the cc flags.
FLAGS	= -c -O4

warp:	$(MWARP)
	cc $(MWARP) $(LDLIBS) -o warp

morph:	$(MORPH)
	cc $(MORPH) $(LDLIBS) -o morph

.c.o:
	cc $(FLAGS) -o $@ $<

