#/****************************************************************************
# * Imakefile for movietop3d
# * Author Julie Roskies
# * Copyright 1989, Pittsburgh Supercomputing Center, Carnegie Mellon University
# *
# * Permission use, copy, and modify this software and its documentation
# * without fee for personal use or use within your organization is hereby
# * granted, provided that the above copyright notice is preserved in all
# * copies and that that copyright and this permission notice appear in
# * supporting documentation.  Permission to redistribute this software to
# * other organizations or individuals is not granted;  that must be
# * negotiated with the PSC.  Neither the PSC nor Carnegie Mellon
# * University make any representations about the suitability of this
# * software for any purpose.  It is provided "as is" without express or
# * implied warranty.
# *****************************************************************************/
LIBS = -lm

CSOURCE= movietop3d.c emitp3d.c colorpart.c colortable.c displace.c errors.c \
	fillstruct.c structures.c

HFILES= color_defs.h disp_defs.h emit_defs.h err_defs.h fill_defs.h \
	part_defs.h struct_defs.h

OTHER_SOURCE= cc.opt descrip.mms movietop3d.cld

EXECUTABLES = movietop3d

INSTALLABLES = movietop3d

SRC = emitp3d.o structures.o errors.o fillstruct.o \
	colortable.o colorpart.o displace.o

all:: $(EXECUTABLES)

movietop3d: movietop3d.o $(SRC) 
	cc $(CFLAGS) -o $@ movietop3d.o $(SRC) $(LIBS)






