~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to jpeg/makefile.wat

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# "$Id: makefile.wat,v 1.1.2.1 2004/11/20 03:19:58 easysw Exp $"
 
3
#
 
4
# JPEG library makefile for the Fast Light Toolkit (FLTK).
 
5
#
 
6
# Copyright 1997-2004 by Easy Software Products.
 
7
#
 
8
# This library is free software; you can redistribute it and/or
 
9
# modify it under the terms of the GNU Library General Public
 
10
# License as published by the Free Software Foundation; either
 
11
# version 2 of the License, or (at your option) any later version.
 
12
#
 
13
# This library is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
# Library General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Library General Public
 
19
# License along with this library; if not, write to the Free Software
 
20
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 
21
# USA.
 
22
#
 
23
# Please report all bugs and problems to "fltk-bugs@fltk.org".
 
24
#
 
25
 
 
26
LIBNAMEROOT=ftlk_jpeg
 
27
 
 
28
!include ../watcom.mif
 
29
 
 
30
 
 
31
#
 
32
# Object files...
 
33
#
 
34
 
 
35
LIBOBJS = jmemnobs.obj &
 
36
          jcapimin.obj jcapistd.obj jccoefct.obj jccolor.obj jcdctmgr.obj &
 
37
          jchuff.obj jcinit.obj jcmainct.obj jcmarker.obj jcmaster.obj jcomapi.obj &
 
38
          jcparam.obj jcphuff.obj jcprepct.obj jcsample.obj jctrans.obj &
 
39
          jdapimin.obj jdapistd.obj jdatadst.obj jdatasrc.obj jdcoefct.obj &
 
40
          jdcolor.obj jddctmgr.obj jdhuff.obj jdinput.obj jdmainct.obj jdmarker.obj &
 
41
          jdmaster.obj jdmerge.obj jdphuff.obj jdpostct.obj jdsample.obj &
 
42
          jdtrans.obj jerror.obj jfdctflt.obj jfdctfst.obj jfdctint.obj &
 
43
          jidctflt.obj jidctfst.obj jidctint.obj jidctred.obj jquant1.obj &
 
44
          jquant2.obj jutils.obj jmemmgr.obj
 
45
 
 
46
#
 
47
# Make all targets...
 
48
#
 
49
 
 
50
all: $(LIBNAME)
 
51
 
 
52
$(LIBNAME): $(LIBOBJS)
 
53
    $(LIB) $(LIBOPTS) $@ $<
 
54
 
 
55
#
 
56
# Clean all directories
 
57
#
 
58
clean : .SYMBOLIC
 
59
    @echo Cleaning up.
 
60
CLEANEXTS = obj
 
61
    @for %a in ($(CLEANEXTS)) do -rm -f $(ODIR)\*.%a
 
62
    -rm -f *.err
 
63
    -rm -f $(LIBNAME)
 
64
 
 
65
#
 
66
# End of "$Id: makefile.wat,v 1.1.2.1 2004/11/20 03:19:58 easysw Exp $".
 
67
#