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

Windows编程

开发平台:

Visual C++

  1. # some NT Win32 nmake macros
  2. # for now this resides in samplesinc
  3. !include <ntwin32.mak>
  4. cvars=-DNT -DWIN -DWIN32
  5. obj=obj
  6. mycflag = -Fo.$(obj)\
  7. all: zoomin.exe
  8. # Update the object file if necessary
  9. $(obj)zoomin.obj: zoomin.c zoomin.h
  10.     IF NOT EXIST $(obj) md obj
  11.     $(cc) $(cdebug) $(cflags) $(mycflag) $(cvars) zoomin.c
  12. # Update the resources if necessary
  13. $(obj)zoomin.res: zoomin.rc zoomin.h
  14.     rc -r -fo .$(obj)zoomin.res zoomin.rc
  15. # Update the executable file if necessary, and if so, add the resource back in.
  16. zoomin.exe: $(obj)zoomin.obj 
  17.      $(obj)zoomin.res
  18.     $(link) $(linkdebug) $(guiflags) -out:zoomin.exe  
  19.     $(obj)zoomin.obj 
  20.     $(obj)zoomin.res $(guilibs) shell32.lib
  21. !IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
  22.     rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
  23. !ENDIF