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

Windows编程

开发平台:

Visual C++

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Examples                  **#
  4. #**                   dunion Application                    **#
  5. #**         Copyright(c) Microsoft Corp. 1992-1996          **#
  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. all : dunionc dunions
  15. # Make the dunionc
  16. dunionc : dunionc.exe
  17. dunionc.exe : dunionc.obj dunion_c.obj
  18.     $(link) $(linkdebug) $(conflags) -out:dunionc.exe 
  19.       dunionc.obj dunion_c.obj 
  20.       rpcrt4.lib $(conlibsdll)
  21. # dunionc main program
  22. dunionc.obj : dunionc.c dunion.h
  23.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  24. # dunionc stub
  25. dunion_c.obj : dunion_c.c dunion.h
  26.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  27. # Make the dunions
  28. dunions : dunions.exe
  29. dunions.exe : dunions.obj dunionp.obj dunion_s.obj
  30.     $(link) $(linkdebug) $(conflags) -out:dunions.exe 
  31.       dunions.obj dunion_s.obj dunionp.obj 
  32.       rpcrt4.lib $(conlibsdll)
  33. # dunions main loop
  34. dunions.obj : dunions.c dunion.h
  35.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  36. # remote procedures
  37. dunionp.obj  : dunionp.c dunion.h
  38.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  39. # dunions stub file
  40. dunion_s.obj : dunion_s.c dunion.h
  41.    $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  42. # Stubs and header file from the IDL file
  43. dunion.h dunion_c.c dunion_s.c : dunion.idl dunion.acf
  44.     midl -oldnames -no_cpp dunion.idl
  45. # Clean up everything
  46. cleanall : clean
  47.     -del *.exe
  48. # Clean up everything but the .EXEs
  49. clean :
  50.     -del *.obj
  51.     -del *.map
  52.     -del dunion_c.c
  53.     -del dunion_s.c
  54.     -del dunion.h