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.vms < prev    next >
Makefile  |  1990-11-05  |  1KB  |  38 lines

  1. #--------------------------------------------------------
  2. #  MAKEFILE.VMS - Makefile for read_write_plane (VMS 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 = /include_directory=([],LLVS:)
  12.  
  13. CFLAGS = /nolist /obj=$(MMS$TARGET_NAME).OBJ $(INCLUDES) /noopt /debug
  14.  
  15. LFLAGS = VAXCRTL/opt  /debug
  16.  
  17. concatenate_planes.exe : concatenate_planes.obj read_write_plane.obj -
  18.              multi_read_write_plane.obj
  19.     $(LINK) concatenate_planes.obj,read_write_plane.obj,-
  20.         multi_read_write_plane.obj,$(LFLAGS)
  21.  
  22. copy_plane.exe : copy_plane.obj read_write_plane.obj
  23.     $(LINK) copy_plane.obj,read_write_plane.obj,$(LFLAGS)
  24.  
  25. format_plane.exe : format_plane.obj read_write_plane.obj
  26.     $(LINK) format_plane.obj,read_write_plane.obj,$(LFLAGS)
  27.  
  28. format_plane.obj : format_plane.c
  29.  
  30. copy_plane.obj : copy_plane.c
  31.  
  32. concatenate_planes.obj : concatenate_planes.c
  33.  
  34. read_write_plane.obj : read_write_plane.c llvs_plane.h
  35.  
  36. multi_read_write_plane.obj : multi_read_write_plane.c llvs_plane.h
  37.  
  38.