summaryrefslogtreecommitdiff
path: root/port
diff options
context:
space:
mode:
authorRoger Leigh <rleigh@codelibre.net>2021-02-05 21:19:02 +0000
committerRoger Leigh <rleigh@codelibre.net>2021-02-08 18:49:07 +0000
commitd0eac627045ad4549cefc8a407501bd42e685aed (patch)
treec76be21574a3109eb0cfd4bbd50476c6abcab718 /port
parente79670aa50fca7e7bb98b050b06dd86c7cada6a2 (diff)
downloadlibtiff-git-d0eac627045ad4549cefc8a407501bd42e685aed.tar.gz
Remove NMake build support
The functionality provided by the NMake build is now completely superseded by the CMake build.
Diffstat (limited to 'port')
-rw-r--r--port/Makefile.am1
-rw-r--r--port/Makefile.vc43
2 files changed, 0 insertions, 44 deletions
diff --git a/port/Makefile.am b/port/Makefile.am
index ea17898b..287b6184 100644
--- a/port/Makefile.am
+++ b/port/Makefile.am
@@ -25,7 +25,6 @@
EXTRA_DIST = \
CMakeLists.txt \
- Makefile.vc \
libport.h
noinst_LTLIBRARIES = libport.la
diff --git a/port/Makefile.vc b/port/Makefile.vc
deleted file mode 100644
index 23bf06bf..00000000
--- a/port/Makefile.vc
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
-#
-# Permission to use, copy, modify, distribute, and sell this software and
-# its documentation for any purpose is hereby granted without fee, provided
-# that (i) the above copyright notices and this permission notice appear in
-# all copies of the software and related documentation, and (ii) the names of
-# Sam Leffler and Silicon Graphics may not be used in any advertising or
-# publicity relating to the software without the specific, prior written
-# permission of Sam Leffler and Silicon Graphics.
-#
-# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
-# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
-# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-#
-# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
-# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
-# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
-# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
-# OF THIS SOFTWARE.
-#
-# Makefile for MS Visual C and Watcom C compilers.
-#
-# To build:
-# C:\libtiff\port> nmake /f makefile.vc
-
-!INCLUDE ..\nmake.opt
-
-INCL = -I..\libtiff
-
-OBJ = \
- getopt.obj
-
-all: libport.lib
-
-libport.lib: $(OBJ)
- $(AR) /out:libport.lib $(OBJ)
-
-clean:
- -del *.obj
- -del *.lib
-