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

Windows编程

开发平台:

Visual C++

  1. proj = DDESPY
  2. SRCS = DDESPY.C LISTS.C TESTSUBS.C
  3. #set nodebug=1 to omit debug information from build
  4. !include <win32.mak>
  5. !if "$(CPU)" == "i386"
  6. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  7. !else
  8. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  9. !endif
  10. all: $(proj).exe
  11. #create resource binaries
  12. $(proj).res: $(proj).rc $(proj).dlg $*.h
  13.     $(rc) $(rcvars) -r -fo $(proj).res $(proj).rc
  14. # Update the object file if necessary
  15. .c.obj:
  16.     $(cc) $(cflags)  $(cvars) $(cdebug) $*.c
  17. $(proj).exe: $(SRCS:.C=.OBJ) $(proj).res
  18.     $(link) $(linkdebug) $(guiflags) $(SRCS:.C=.OBJ)  $(guilibs) $(proj).res -out:$(proj).exe
  19. !IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
  20.     rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
  21. !ENDIF
  22. clean:
  23.     del *.obj
  24.     del *.exe
  25.     del *.map
  26.     del *.res
  27.     del *.res