home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / dbmsg / ado / getrows / makefile < prev    next >
Encoding:
Makefile  |  1997-12-10  |  336 b   |  18 lines

  1. # ADO GetRows Sample
  2. # Copyright 1995 - 1998 Microsoft Corporation
  3.  
  4. !ifdef NODEBUG
  5. DEBUG=Release
  6. !else
  7. DEBUG=Debug
  8. !endif
  9.  
  10. !if ( "$(CPU)" == "ALPHA" ) || ( "$(PROCESSOR_ARCHITEECTURE)" == "ALPHA" )
  11. PROC=Win32 (ALPHA)
  12. !else
  13. PROC=Win32
  14. !endif
  15.  
  16. All:
  17.  $(MAKE) -l$(MAKEFLAGS) -f GetRows.Mak CFG="GetRows - $(PROC) $(DEBUG)"
  18.