home *** CD-ROM | disk | FTP | other *** search
- # SQLCURSW - Microsoft Make utility, Make file for sqlcursw.c an SQL Server,
- # Microsoft Windows, version 3.0 demo program.
- #
- # Copyright (C) 1991 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-DOS 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.
-
- sqlcursw.exe: sqlcursw.obj sqlcursw.def sqlcursw.res
- link sqlcursw,,,w3dblib.lib+libw.lib+mlibcew.lib /NOE,sqlcursw.def;
- rc sqlcursw.res
-
- # Update the resource if necessary
-
- sqlcursw.res: sqlcursw.rc sqlcursw.h
- rc -r sqlcursw.rc
-
- # Update the object file if necessary
-
- sqlcursw.obj: sqlcursw.c sqlcursw.h
- cl -Lr -AM -c -Gsw -NT_SQLCURSW -Fosqlcursw.obj -Zple sqlcursw.c
-
-