home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / security / crypto / cfiler / makefile < prev    next >
Makefile  |  1996-01-09  |  612b  |  30 lines

  1.  
  2. TARGETOS=WINNT
  3.  
  4. # define compile & link options
  5. !include <win32.mak>
  6.  
  7. all: cfiler.exe cf.hlp
  8.  
  9. OBJS=cfiler.obj crp.obj drvproc.obj enumdrv.obj expdir.obj fillfile.obj table.obj
  10.  
  11.  
  12. # Update the resource if necessary
  13. cfiler.res: cfiler.rc  *.bmp *.ico
  14.     $(rc) $(rcvars) -r cfiler.rc
  15.  
  16.  
  17. # Build rule for converting c files to obj files
  18. .c.obj:
  19.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  20.  
  21.  
  22. # Update the online help file
  23. cf.hlp: cf.hpj cf.rtf
  24.     $(hc) cf.hpj
  25.  
  26.  
  27. # Update the executable file
  28. cfiler.exe: $(OBJS) cfiler.res
  29.     $(link) $(linkdebug)  $(guiflags) -out:$*.exe $** $(guilibsmt)
  30.