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

« back to all changes in this revision

Viewing changes to makefiles/makeinclude.mingw

  • 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.mingw,v 1.1.2.3.2.11 2002/07/14 17:03:31 easysw Exp $"
 
2
# "$Id: makeinclude.mingw,v 1.1.2.3.2.14 2004/10/18 20:22:22 easysw Exp $"
3
3
#
4
4
# Make include file for the Fast Light Tool Kit (FLTK).
5
5
# (this file for MingW using GCC 2.95.x)
81
81
GLLIBNAME       = ../lib/libfltk_gl.a
82
82
IMGLIBNAME      = ../lib/libfltk_images.a
83
83
LIBCOMMAND      = ar -ruv
 
84
LIBEXT          = .a
84
85
RANLIB          = ranlib
85
86
DSONAME         =
86
87
FLDSONAME       =
89
90
DSOCOMMAND      = echo
90
91
 
91
92
# libraries to link with (in addition to default libs):
92
 
LDLIBS          =-mwindows -lgdi32 -lcomctl32 -lwsock32
93
 
GLDLIBS         =-mwindows -lglu32 -lopengl32 -lgdi32 -lcomctl32 -lwsock32
 
93
LDLIBS          =-mwindows -lole32 -luuid -lcomctl32 -lwsock32 -lsupc++
 
94
GLDLIBS         =-mwindows -lglu32 -lopengl32 -lole32 -luuid -lcomctl32 -lwsock32 -lsupc++
94
95
LINKFLTK        =-L../lib -lfltk
95
96
LINKFLTKGL      =-L../lib -lfltk_gl
96
97
LINKFLTKFORMS   =-L../lib -lfltk_forms -lfltk
97
 
LINKFLTKIMG     =-L../lib -lfltk_images -lfltk
98
 
IMAGELIBS       =
 
98
LINKFLTKIMG     =-L../lib -lfltk_images -lfltk $(IMAGELIBS)
 
99
LINKSHARED      =  -L../lib -lfltk_images -lfltk_forms -lfltk $(IMAGELIBS)
 
100
IMAGELIBS       =-lfltk_png -lfltk_z -lfltk_jpeg
 
101
 
 
102
# image libraries to build...
 
103
IMAGEDIRS       = jpeg zlib png
 
104
 
 
105
# The extension to use for executables...
 
106
EXEEXT          = .exe
99
107
 
100
108
# Do we build the OpenGL demos?
101
109
GLDEMOS         =gldemos
103
111
# Do we build the threads demo?
104
112
THREADS         =threads
105
113
 
 
114
# Name of FLUID executable we install
 
115
FLUID           = fluid$(EXEEXT)
 
116
 
 
117
# Possible steps after linking...
 
118
POSTBUILD       = :
 
119
 
 
120
# Man page extensions...
 
121
CAT1EXT         = 1
 
122
CAT3EXT         = 3
 
123
 
106
124
# Be quiet when building...
107
125
.SILENT:
108
126
 
111
129
 
112
130
.cxx:
113
131
        echo Compiling and linking $@...
114
 
        $(CXX) -I.. $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
 
132
        $(CXX) -I.. -I../png -I../jpeg -I../zlib $(CXXFLAGS) $< $(LINKFLTK) $(LDLIBS) -o $@
115
133
 
116
134
.c.o:
117
135
        echo Compiling $@...
118
 
        $(CC) -I.. $(CXXFLAGS) $< -c
 
136
        $(CC) -I.. -I../png -I../jpeg -I../zlib $(CXXFLAGS) $< -c
119
137
 
120
138
.cxx.o:
121
139
        echo Compiling $@...
122
 
        $(CXX) -I.. $(CXXFLAGS) $< -c
 
140
        $(CXX) -I.. -I../png -I../jpeg -I../zlib $(CXXFLAGS) $< -c
123
141
 
124
142
#
125
 
# End of "$Id: makeinclude.mingw,v 1.1.2.3.2.11 2002/07/14 17:03:31 easysw Exp $".
 
143
# End of "$Id: makeinclude.mingw,v 1.1.2.3.2.14 2004/10/18 20:22:22 easysw Exp $".
126
144
#