home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / bob13.arj / MAKEFILE < prev    next >
Text File  |  1991-09-11  |  208b  |  13 lines

  1. OFILES=bob.obj bobcom.obj bobdbg.obj bobint.obj bobfcn.obj \
  2. bobmem.obj bobscn.obj
  3.  
  4. CFLAGS=-w-rvl -ml
  5.  
  6. .c.obj:
  7.     bcc -c $(CFLAGS) $<
  8.  
  9. bob.exe:    $(OFILES)
  10.     bcc -ebob -ml $(OFILES)
  11.  
  12. $(OFILES):    bob.h
  13.