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

Windows编程

开发平台:

Visual C++

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Examples                  **#
  4. #**                    whello Application                   **#
  5. #**            Copyright(c) Microsoft Corp. 1991-1995       **#
  6. #**                                                         **#
  7. #*************************************************************#
  8. !include <ntwin32.mak>
  9. !if "$(CPU)" == "i386"
  10. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  11. !else
  12. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  13. !endif
  14. .c.obj:
  15.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $<
  16. all: whellos whelloc
  17. # Update the resource if necessary
  18. whello.rbj: whello.rc whello.h rpc.ico whello.dlg
  19.     rc -r whello.rc
  20.     cvtres -$(CPU) whello.res -o whello.rbj
  21. # Update the executable file if necessary, and if so, add the resource back in.
  22. whelloc : whelloc.exe
  23. whelloc.exe : whelloc.obj whello.def whello_c.obj whello.rbj
  24.     $(link) $(linkdebug) $(guiflags) -out:whelloc.exe -map:whelloc.map 
  25.       whelloc.obj whello_c.obj whello.rbj 
  26.       rpcrt4.lib $(guilibsdll)
  27. whelloc.obj : whelloc.c whelloc.h whello.h
  28. whello_c.obj : whello_c.c whello.h
  29. # Make the whellos
  30. whellos : whellos.exe
  31. whellos.exe : whellos.obj whellop.obj whello_s.obj
  32.     $(link) $(linkdebug) $(conflags) -out:whellos.exe -map:whellos.map 
  33.       whellos.obj whellop.obj whello_s.obj 
  34.       rpcrt4.lib $(conlibsdll)
  35. whellos.obj : whellos.c whello.h
  36. whellop.obj : whellop.c whello.h
  37. whello_s.obj : whello_s.c whello.h
  38. # Make the stubs source
  39. whello.h whello_c.c whello_s.c : whello.idl whello.acf
  40.     midl -oldnames -cpp_cmd $(cc) -cpp_opt "-E" whello.idl
  41. # Clean up everything
  42. cleanall : clean
  43.     -del *.exe
  44. # Clean up everything but the .EXEs
  45. clean :
  46.     -del *.obj
  47.     -del *.map
  48.     -del whello.res
  49.     -del whello.rbj
  50.     -del whello_c.c
  51.     -del whello_s.c
  52.     -del whello.h