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 / umass_foa.tar / mdt_NEW / mdtree / Makefile < prev    next >
Makefile  |  1995-01-25  |  684b  |  21 lines

  1. #-----------------------------------------------------------------------------
  2. # Makefile for Color-based Focus-of-Attention (CFOA)
  3. # Module: mdtree
  4. # Computer Vision Laboratory
  5. # University of Massachusetts - Amherst
  6. # Amherst, MA 01003
  7. # Copyright 1995, University of Massachusetts
  8. #------------------------------------------------------------------------------
  9.  
  10. SRCS = mdtree.c   # source code
  11. OBJS = mdtree.o   # object code
  12. PROGRAM = mdt     # executable
  13.  
  14. CC     = gcc     # compiler  -- define this according to local setup
  15. CFLAGS = -g -Wall      # compiler flags
  16. LFLAGS = -lm      # libraries
  17.  
  18. $(PROGRAM) : $(OBJS)
  19.     $(CC) $(CFLAGS) -o $(PROGRAM) $(OBJS) $(LFLAGS)
  20.  
  21.     \rm $(OBJS)