home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / whello / makefile next >
Makefile  |  1997-10-15  |  2KB  |  68 lines

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