MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

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