home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 09 / bob / makefile < prev    next >
Makefile  |  1991-06-21  |  200b  |  13 lines

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