home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / BRIK.ZIP / DESCRIP.MMS < prev    next >
Text File  |  1989-03-10  |  675b  |  31 lines

  1. # Makefile for brik -- for VAX/VMS "mms".  If you don't have mms,
  2. #  use the "makebrik.com" command file instead.
  3. #
  4. # Don't forget to define a symbol "brik" like this:
  5. #  $ brik:==$disk:[dir]brik.exe
  6. # where "disk" is your device name and "dir" is the directory in which
  7. # brik.exe is kept.
  8.  
  9. # ::[[ @(#) descrip.mms 1.1 89/03/09 20:46:04 ]]::
  10.  
  11. # Please see brik.h for configuration options.
  12.  
  13. CFLAGS = /define=VMS
  14. OBJS = brik.obj, addbfcrc.obj, getopt.obj, vms.obj
  15. CC = cc
  16.  
  17. .c.obj :
  18.     $(CC) $(CFLAGS) $*.c
  19.  
  20. brik.exe : $(OBJS)
  21.     link/executable=brik.exe  $(OBJS), options/opt
  22.  
  23. brik.obj : brik.c brik.h assert.h
  24.  
  25. addbfcrc.obj : addbfcrc.c
  26.  
  27. vms.obj : vms.c
  28.  
  29. getopt.obj : getopt.c
  30.  
  31.