home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a063 / 13.img / SAMPLE / DBLIB / SQLCURSW < prev    next >
Encoding:
Text File  |  1992-04-13  |  1.1 KB  |  31 lines

  1. # SQLCURSW - Microsoft Make utility, Make file for sqlcursw.c an SQL Server,
  2. # Microsoft Windows, version 3.0 demo program.
  3. #
  4. #         Copyright (C) 1991 Microsoft Corp.
  5. #
  6. # Standard Windows make file.  The utility MAKE.EXE compares the
  7. # creation date of the file to the left of the colon with the file(s)
  8. # to the right of the colon.  If the file(s) on the right are newer
  9. # then the file on the left, Make will execute all of the command lines
  10. # following this line that are indented by at least one tab or space.
  11. # Any valid MS-DOS command line may be used.
  12.  
  13. # Update the executable file if necessary, and if so, add the resource back in.
  14. # The /NOE must be included when linking with Windows libraries.
  15.  
  16. sqlcursw.exe: sqlcursw.obj sqlcursw.def sqlcursw.res
  17.     link sqlcursw,,,w3dblib.lib+libw.lib+mlibcew.lib /NOE,sqlcursw.def;
  18.     rc sqlcursw.res
  19.  
  20. # Update the resource if necessary
  21.  
  22. sqlcursw.res: sqlcursw.rc sqlcursw.h
  23.     rc -r sqlcursw.rc
  24.  
  25. # Update the object file if necessary
  26.  
  27. sqlcursw.obj: sqlcursw.c sqlcursw.h
  28.     cl -Lr -AM -c -Gsw    -NT_SQLCURSW -Fosqlcursw.obj -Zple sqlcursw.c
  29.  
  30. 
  31.