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 / ascender.tar.Z / ascender.tar / Triangulate / makefile < prev    next >
Makefile  |  1996-02-27  |  872b  |  34 lines

  1. #--------------------------------------------------------------------------
  2. # Makefile for the triangulation routine for the ASCENDER system.
  3. #
  4. # The triangulator is now a standalone 'c' program and can be accessed
  5. # from the ASCENDER lisp system from a shell command.
  6. # Christopher Jaynes
  7. #--------------------------------------------------------------------------
  8.  
  9. INCLUDES = -I./include/
  10.  
  11. CFLAGS = -g $(INCLUDES) 
  12.  
  13. LFLAGS = -lm -g 
  14.  
  15. SRCS = bail_out.c error_message.c svalue.c array_utils.c \
  16.        gaussj_check.c gaussj2_check.c marqu.c tri.c
  17.  
  18. OBJS = tri.o bail_out.o error_message.o svalue.o array_utils.o \
  19.        gaussj_check.o gaussj2_check.o marqu.o NRroutines.c \
  20.        fbip.o fbip-io.o fbip-build.o fbip-internal.o \
  21.        matrixinv2.o lubksb.o ludcmp.o
  22.  
  23. PROGRAM = tri
  24.  
  25. CC = gcc
  26.  
  27. $(PROGRAM) : $(OBJS)
  28.     $(CC) $(CFLAGS) \
  29.     -o $(PROGRAM) $(OBJS) $(LFLAGS)
  30.  
  31.  
  32.  
  33.