home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 9.ddi / SAMPLE / DBLIB / SQLTEST3 < prev   
Encoding:
Text File  |  1992-04-13  |  1.1 KB  |  35 lines

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