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 / universal_plane_file_format / makefile.sequent < prev    next >
Makefile  |  1992-01-29  |  1KB  |  47 lines

  1. #--------------------------------------------------------
  2. #  MAKEFILE.SEQUENT - Makefile for read_write_plane (SDEQUENT Version)
  3. #  Robert Heller Created on Mon Jul 10 11:08:36 1989
  4. #   Last mod - 
  5. #--------------------------------------------------------
  6. #  Contents:
  7. #--------------------------------------------------------
  8. # (c) Copyright 1986 by The University of Massachusetts
  9. #--------------------------------------------------------
  10.  
  11. INCLUDES = -I.
  12.  
  13. CFLAGS = -DSEQUENT -g $(INCLUDES)
  14.  
  15. LFLAGS = -lm
  16.  
  17. all : concatenate_planes copy_plane format_plane XShowPlane
  18.  
  19. concatenate_planes : concatenate_planes.o read_write_plane.o \
  20.              multi_read_write_plane.o
  21.     cc -o concatenate_planes concatenate_planes.o read_write_plane.o \
  22.            multi_read_write_plane.o $(LFLAGS)
  23.  
  24. copy_plane : copy_plane.o read_write_plane.o
  25.     cc -o copy_plane copy_plane.o read_write_plane.o $(LFLAGS)
  26.  
  27. XShowPlane : XShowPlane.o read_write_plane.o
  28.     cc -o XShowPlane  XShowPlane.o read_write_plane.o $(LFLAGS) -lX11
  29.  
  30. copy_plane.o : copy_plane.c
  31.  
  32. concatenate_planes.o : concatenate_planes.c
  33.  
  34. format_plane : format_plane.o read_write_plane.o
  35.     cc -o format_plane format_plane.o read_write_plane.o $(LFLAGS)
  36.  
  37. format_plane.o : format_plane.c
  38.  
  39. read_write_plane.o : read_write_plane.c llvs_plane.h
  40.  
  41. multi_read_write_plane.o : multi_read_write_plane.c llvs_plane.h
  42.  
  43. XShowPlane.o : XShowPlane.c llvs_per_plane.h displaystructs.h
  44.     cc $(CFLAGS) -DTESTING -c XShowPlane.c
  45.  
  46.  
  47.