home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a025 / 11.ddi / SQLPM.@ / SQLPM.bin
Encoding:
Text File  |  1992-09-15  |  1.0 KB  |  30 lines

  1. # SQLPM - Microsoft Make utility, Make file for sqlpm.c an SQL Server,
  2. # Microsoft Windows demo program.
  3. #
  4. #            Copyright (C) 1990 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-OS/2 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. sqlpm.exe: sqlpm.obj sqlpm.def sqlpm.res
  17.     link /align:16 sqlpm,,, os2 pdblib.lib /NOD:llibce llibcep,sqlpm.def;
  18.     rc sqlpm.res
  19.  
  20. # Update the resource if necessary
  21.  
  22. sqlpm.res: sqlpm.rc sqlpm.ico sqlpm.h
  23.     rc -r sqlpm.rc
  24.  
  25. # Update the object file if necessary
  26.  
  27. sqlpm.obj: sqlpm.c sqlpm.h
  28.     cl -Lp -AL -Au -NT_sqlpm -c -G2s -Oas -Zple sqlpm.c
  29.  
  30.