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 / wintyp / makefile.uni < prev    next >
Encoding:
Makefile  |  1996-07-23  |  987 b   |  24 lines

  1. #*************************************************************#
  2. #**                                                         **#
  3. #**                 Microsoft RPC Samples                   **#
  4. #**                   Wintyp Application                    **#
  5. #**         Copyright(c) Microsoft Corp. 1992-1996          **#
  6. #**                                                         **#
  7. #** This is the makefile used when compiling for UNICODE.   **#
  8. #** It sets the flags it needs, and then calls the regular  **#
  9. #** makefile.                                               **#
  10. #** To compile for ANSI type nmake at the command line.     **#
  11. #*************************************************************#
  12. # FILE : MAKEFILE.UNI
  13.  
  14. !include <ntwin32.mak>
  15.  
  16. # include support for unicode
  17. cflags = $(cflags) -D_UNICODE -DUNICODE
  18. midlflags = -D _UNICODE
  19.  
  20. # include the library for the CommandLineToArgvW function
  21. conlibsdll = $(conlibsdll) shell32.lib
  22.  
  23. !include <makefile>
  24.