summaryrefslogtreecommitdiff
path: root/jpeg/makefile.wat
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2015-03-16 16:57:13 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2015-03-16 16:57:13 +0000
commit463eb3a18155d848733e33afbc75bfdccc9a1784 (patch)
treeeede2f2bcc29723fae9149c445c78424e90af653 /jpeg/makefile.wat
parent992192dd0261da8efc9df6016806e05f80b9b81e (diff)
Update bundled libjpeg from jpeg-8c to jpeg-9a.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10626 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'jpeg/makefile.wat')
-rw-r--r--jpeg/makefile.wat60
1 files changed, 0 insertions, 60 deletions
diff --git a/jpeg/makefile.wat b/jpeg/makefile.wat
deleted file mode 100644
index 91ca8a1bf..000000000
--- a/jpeg/makefile.wat
+++ /dev/null
@@ -1,60 +0,0 @@
-#
-# "$Id$"
-#
-# JPEG library makefile for the Fast Light Toolkit (FLTK).
-#
-# Copyright 1997-2004 by Easy Software Products.
-#
-# This library is free software. Distribution and use rights are outlined in
-# the file "COPYING" which should have been included with this file. If this
-# file is missing or damaged, see the license at:
-#
-# http://www.fltk.org/COPYING.php
-#
-# Please report all bugs and problems on the following page:
-#
-# http://www.fltk.org/str.php
-#
-
-LIBNAMEROOT=ftlk_jpeg
-
-!include ../watcom.mif
-
-
-#
-# Object files...
-#
-
-LIBOBJS = jmemnobs.obj &
- jcapimin.obj jcapistd.obj jccoefct.obj jccolor.obj jcdctmgr.obj &
- jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj &
- jcparam.obj jcphuff.obj jcprepct.obj jcsample.obj jctrans.obj &
- jdapimin.obj jdapistd.obj jdatadst.obj jdatasrc.obj jdcoefct.obj &
- jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj &
- jdmaster.obj jdmerge.obj jdphuff.obj jdpostct.obj jdsample.obj &
- jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj &
- jidctflt.obj jidctfst.obj jidctint.obj jidctred.obj jquant1.obj &
- jquant2.obj jutils.obj jmemmgr.obj
-
-#
-# Make all targets...
-#
-
-all: $(LIBNAME)
-
-$(LIBNAME): $(LIBOBJS)
- $(LIB) $(LIBOPTS) $@ $<
-
-#
-# Clean all directories
-#
-clean : .SYMBOLIC
- @echo Cleaning up.
-CLEANEXTS = obj
- @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
- -rm -f *.err
- -rm -f $(LIBNAME)
-
-#
-# End of "$Id$".
-#