home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / crossref / cref / cref.mak < prev    next >
Text File  |  1988-11-25  |  354b  |  19 lines

  1. # MicroSoft makefile for cref.exe
  2. # 28 November 1988
  3. # Ken Gant
  4.  
  5. cflags= #-Zi -Od # uncomment these when compiling for Codeview
  6. compile=cl -c $(cflags) $*.c
  7.  
  8. .c.obj:
  9.         $(compile)
  10.  
  11. cref.obj : $*.c style.h
  12.  
  13. esccref.obj : $*.c style.h
  14.  
  15. strcref.obj : $*.c style.h
  16.  
  17. cref.exe : cref.obj esccref.obj strcref.obj
  18.         cl $(cflags) $**
  19.