MAKEFILE
上传用户:shijixite
上传日期:2007-01-03
资源大小:108k
文件大小:1k
源码类别:

输入法编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WINNT
  3. !include <ntwin32.mak>
  4. all: uconvert.exe uconvert.hlp
  5. # Update the resource if necessary
  6. uconvert.res: uconvert.rc uconvert.h
  7.     rc -r -fo uconvert.res uconvert.rc
  8. # Update the online help file if necessary.
  9. uconvert.hlp: uconvert.hpj uconvert.rtf
  10.     if exist uconvert.PH del uconvert.PH
  11.     $(hc) uconvert.hpj
  12. # Update the object files if necessary
  13. uconvert.obj: uconvert.c uconvert.h
  14.     $(cc) $(cdebug) $(cflags) $(cvars) uconvert.c
  15. install.obj: install.c install.h
  16.     $(cc) $(cdebug) $(cflags) $(cvars) install.c
  17. dialogs.obj: dialogs.c uconvert.h
  18.     $(cc) $(cdebug) $(cflags) $(cvars) dialogs.c
  19. # Update the executable file if necessary
  20. uconvert.exe: uconvert.obj install.obj dialogs.obj uconvert.res
  21.     $(link) $(linkdebug) $(guiflags) -out:uconvert.exe 
  22.           uconvert.obj install.obj dialogs.obj uconvert.res $(guilibs) advapi32.lib shell32.lib