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

« back to all changes in this revision

Viewing changes to makeinclude.in

  • 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
1
#
2
 
# "$Id: makeinclude.in,v 1.7.2.11.2.26 2004/04/11 04:38:53 easysw Exp $"
 
2
# "$Id: makeinclude.in,v 1.7.2.11.2.29 2004/10/18 20:22:21 easysw Exp $"
3
3
#
4
4
# Make include file for the Fast Light Tool Kit (FLTK).
5
 
# @configure_input@
6
5
#
7
6
# Copyright 1998-2004 by Bill Spitzak and others.
8
7
#
53
52
 
54
53
# flags for C++ compiler:
55
54
OPTIM           = @OPTIM@
56
 
CFLAGS          = $(OPTIM) @CFLAGS@
57
 
CXXFLAGS        = $(OPTIM) @CXXFLAGS@
 
55
CFLAGS          = $(OPTIM) @CPPFLAGS@ @CFLAGS@
 
56
CXXFLAGS        = $(OPTIM) @CPPFLAGS@ @CXXFLAGS@
58
57
 
59
58
# program to make the archive:
60
59
LIBNAME         = @LIBNAME@
62
61
GLLIBNAME       = @GLLIBNAME@
63
62
IMGLIBNAME      = @IMGLIBNAME@
64
63
LIBCOMMAND      = @LIBCOMMAND@
 
64
LIBEXT          = @LIBEXT@
65
65
RANLIB          = @RANLIB@
66
66
DSONAME         = @DSONAME@
67
67
FLDSONAME       = @FLDSONAME@
79
79
LINKSHARED      = @DSOLINK@ @LINKSHARED@ $(IMAGELIBS)
80
80
IMAGELIBS       = @IMAGELIBS@
81
81
 
 
82
# image libraries to build...
 
83
IMAGEDIRS       = @JPEG@ @ZLIB@ @PNG@
 
84
 
82
85
# The extension to use for executables...
83
86
EXEEXT          = @EXEEXT@
84
87
 
106
109
 
107
110
.o$(EXEEXT):
108
111
        echo Linking $@...
109
 
        $(CXX) -I.. $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
 
112
        $(CXX) -I.. @PNGINC@ @JPEGINC@ @ZLIBINC@ $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
110
113
        $(POSTBUILD) $@ ../FL/mac.r
111
114
 
112
115
.c.o:
113
116
        echo Compiling $<...
114
 
        $(CC) -I.. $(CFLAGS) -c $<
 
117
        $(CC) -I.. @PNGINC@ @JPEGINC@ @ZLIBINC@ $(CFLAGS) -c $<
115
118
 
116
119
.cxx.o:
117
120
        echo Compiling $<...
118
 
        $(CXX) -I.. $(CXXFLAGS) -c $<
 
121
        $(CXX) -I.. @PNGINC@ @JPEGINC@ @ZLIBINC@ $(CXXFLAGS) -c $<
119
122
 
120
123
.man.0 .man.1 .man.3:
121
124
        echo Formatting $<...
130
133
        mv t.z $@
131
134
 
132
135
#
133
 
# End of "$Id: makeinclude.in,v 1.7.2.11.2.26 2004/04/11 04:38:53 easysw Exp $".
 
136
# End of "$Id: makeinclude.in,v 1.7.2.11.2.29 2004/10/18 20:22:21 easysw Exp $".
134
137
#