home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
vis-ftp.cs.umass.edu
/
vis-ftp.cs.umass.edu.tar
/
vis-ftp.cs.umass.edu
/
pub
/
Software
/
ASCENDER
/
ascendMar8.tar
/
UMass
/
Triangulate
/
makefile
< prev
next >
Wrap
Makefile
|
1996-02-27
|
872b
|
34 lines
#--------------------------------------------------------------------------
# Makefile for the triangulation routine for the ASCENDER system.
#
# The triangulator is now a standalone 'c' program and can be accessed
# from the ASCENDER lisp system from a shell command.
#
# Christopher Jaynes
#--------------------------------------------------------------------------
INCLUDES = -I./include/
CFLAGS = -g $(INCLUDES)
LFLAGS = -lm -g
SRCS = bail_out.c error_message.c svalue.c array_utils.c \
gaussj_check.c gaussj2_check.c marqu.c tri.c
OBJS = tri.o bail_out.o error_message.o svalue.o array_utils.o \
gaussj_check.o gaussj2_check.o marqu.o NRroutines.c \
fbip.o fbip-io.o fbip-build.o fbip-internal.o \
matrixinv2.o lubksb.o ludcmp.o
PROGRAM = tri
CC = gcc
$(PROGRAM) : $(OBJS)
$(CC) $(CFLAGS) \
-o $(PROGRAM) $(OBJS) $(LFLAGS)