]>
Commit | Line | Data |
---|---|---|
d5e7ffcf KO |
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 | # Edit nmake.opt file if you want to ajust building options.\r | |
25 | #\r | |
26 | # To build:\r | |
27 | # C:\libtiff> nmake /f makefile.vc \r | |
28 | \r | |
29 | !INCLUDE nmake.opt\r | |
30 | \r | |
31 | all: port lib tools\r | |
32 | \r | |
33 | port::\r | |
34 | cd port\r | |
35 | $(MAKE) /f Makefile.vc\r | |
36 | cd..\r | |
37 | \r | |
38 | lib: port\r | |
39 | cd libtiff\r | |
40 | $(MAKE) /f Makefile.vc\r | |
41 | cd..\r | |
42 | \r | |
43 | tools: lib\r | |
44 | cd tools\r | |
45 | $(MAKE) /f Makefile.vc\r | |
46 | cd ..\r | |
47 | \r | |
48 | clean:\r | |
49 | cd port\r | |
50 | $(MAKE) /f Makefile.vc clean\r | |
51 | cd..\r | |
52 | cd libtiff\r | |
53 | $(MAKE) /f Makefile.vc clean\r | |
54 | cd..\r | |
55 | cd tools\r | |
56 | $(MAKE) /f Makefile.vc clean\r | |
57 | cd ..\r |