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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=BOTH
  3. !include <win32.mak>
  4. all: ttfonts.exe ttfonts.hlp
  5. # If we are building for Windows NT only, then use Unicode entry points.
  6. !IF "$(TARGETOS)" == "WINNT"
  7. cflags = $(cflags) -DUNICODE
  8. !ENDIF
  9. # Update the resource if necessary
  10. ttfonts.res: ttfonts.rc ttfonts.h
  11.     rc $(rcvars) $(rcflags) -r -fo ttfonts.res ttfonts.rc
  12. # Update the online help file if necessary.
  13. ttfonts.hlp: ttfonts.hpj ttfonts.rtf
  14.     @if exist ttfonts.PH del ttfonts.PH
  15.     $(hc) ttfonts.hpj
  16. # Inference rule for updating the object files
  17. .c.obj:
  18.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  19. # Update the executable file if necessary, and if so, add the resource back in.
  20. ttfonts.exe: ttfonts.obj allfont.obj dialogs.obj toolbar.obj display.obj ttfonts.res ttfonts.def
  21.     $(link) $(linkdebug) $(guiflags) -out:ttfonts.exe 
  22.           ttfonts.obj allfont.obj dialogs.obj toolbar.obj display.obj ttfonts.res $(guilibs)
  23. # Clean up everything except .exe and .hlp files
  24. clean:
  25.     del *.obj *.res *.err *.ph