]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/tiff/port/Makefile.vc
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / src / tiff / port / Makefile.vc
... / ...
CommitLineData
1#\r
2# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>\r
3#\r
4# Permission to use, copy, modify, distribute, and sell this software and \r
5# its documentation for any purpose is hereby granted without fee, provided\r
6# that (i) the above copyright notices and this permission notice appear in\r
7# all copies of the software and related documentation, and (ii) the names of\r
8# Sam Leffler and Silicon Graphics may not be used in any advertising or\r
9# publicity relating to the software without the specific, prior written\r
10# permission of Sam Leffler and Silicon Graphics.\r
11# \r
12# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, \r
13# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY \r
14# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \r
15# \r
16# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR\r
17# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,\r
18# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\r
19# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF \r
20# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE \r
21# OF THIS SOFTWARE.\r
22#\r
23# Makefile for MS Visual C and Watcom C compilers.\r
24#\r
25# To build:\r
26# C:\libtiff\port> nmake /f makefile.vc \r
27\r
28!INCLUDE ..\nmake.opt\r
29\r
30OBJ = \\r
31 strcasecmp.obj \\r
32 getopt.obj\r
33\r
34all: libport.lib\r
35\r
36libport.lib: $(OBJ)\r
37 $(AR) /out:libport.lib $(OBJ)\r
38\r
39clean:\r
40 -del *.obj\r
41 -del *.lib\r
42\r