home *** CD-ROM | disk | FTP | other *** search
- # SQLPM - Microsoft Make utility, Make file for sqlpm.c an SQL Server,
- # Microsoft Windows demo program.
- #
- # Copyright (C) 1990 Microsoft Corp.
- #
- # Standard Windows make file. The utility MAKE.EXE compares the
- # creation date of the file to the left of the colon with the file(s)
- # to the right of the colon. If the file(s) on the right are newer
- # then the file on the left, Make will execute all of the command lines
- # following this line that are indented by at least one tab or space.
- # Any valid MS-OS/2 command line may be used.
-
- # Update the executable file if necessary, and if so, add the resource back in.
- # The /NOE must be included when linking with Windows libraries.
-
- sqlpm.exe: sqlpm.obj sqlpm.def sqlpm.res
- link /align:16 sqlpm,,, os2 pdblib.lib /NOD:llibce llibcep,sqlpm.def;
- rc sqlpm.res
-
- # Update the resource if necessary
-
- sqlpm.res: sqlpm.rc sqlpm.ico sqlpm.h
- rc -r sqlpm.rc
-
- # Update the object file if necessary
-
- sqlpm.obj: sqlpm.c sqlpm.h
- cl -Lp -AL -Au -NT_sqlpm -c -G2s -Oas -Zple sqlpm.c
-