~ubuntu-branches/ubuntu/saucy/glew/saucy

« back to all changes in this revision

Viewing changes to config/Makefile.linux-mingw64

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi, Yaroslav Halchenko, Fabrizio Regalli, Matteo F. Vescovi
  • Date: 2011-11-29 10:56:40 UTC
  • mfrom: (1.1.7) (12.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20111129105640-p20qdtpnrwz6epdv
Tags: 1.7.0-1
[ Yaroslav Halchenko ]
* Added Vcs- header fields
* Minor tune ups of the long descriptions

[ Fabrizio Regalli ]
* Imported Upstream version 1.7.0
* Switch to 3.0 quilt format
* Update d/compat to 8
* Really update d/compat
* Added d/source/options files
* Renamed all 1.6 install files to 1.7
* Adjustin d/control with new 1.7 version number
* Added build-{indep,arch} to d/rules
* Added libglew*.symbols to debian directory
* Update d/shlibs.local with new 1.7 version

[ Matteo F. Vescovi ]
* New maintainer (Closes: #634069)
* debian/control: VCS-Links updated
* debian/control: duplicated Section fields removed.
   - Drop of "Section: libs" fields duplicated for
     libglew1.6 and libglewmx1.6
   - Short-Description field for libglewmx1.6 modified
* debian/control: libglewmx1.6-dev Short-Description fixed

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
NAME = glew32
8
8
CC = amd64-mingw32msvc-gcc
9
9
LD = amd64-mingw32msvc-ld
10
 
ifneq (undefined, $(origin GLEW_MX))
11
 
CFLAGS.EXTRA = -DGLEW_MX
12
 
endif
13
10
CFLAGS.SO = -DGLEW_BUILD
14
 
LDFLAGS.SO = -shared -soname $(LIB.SONAME) --out-implib lib/$(LIB.DEVLNK)
15
11
LDFLAGS.GL = -lglu32 -lopengl32 -lgdi32 -luser32 -lkernel32
16
12
WARN = -Wall -W
17
13
POPT = -O2
18
14
BIN.SUFFIX = .exe
19
 
LIB.SONAME = lib$(NAME).dll
20
 
LIB.DEVLNK = lib$(NAME).dll.a    # for mingw this is the dll import lib
21
 
LIB.SHARED = $(NAME).dll
22
 
LIB.STATIC = lib$(NAME).a     # the static lib will be broken (see CFLAGS.SO)
 
15
LIB.SONAME    = lib$(NAME).dll
 
16
LIB.DEVLNK    = lib$(NAME).dll.a    # for mingw this is the dll import lib
 
17
LIB.SHARED    = $(NAME).dll
 
18
LIB.STATIC    = lib$(NAME).a        # the static lib will be broken (see CFLAGS.SO)
 
19
LDFLAGS.SO    = -shared -soname $(LIB.SONAME) --out-implib lib/$(LIB.DEVLNK)
 
20
LIB.SONAME.MX = lib$(NAME)mx.dll
 
21
LIB.DEVLNK.MX = lib$(NAME)mx.dll.a  # for mingw this is the dll import lib
 
22
LIB.SHARED.MX = $(NAME)mx.dll
 
23
LIB.STATIC.MX = lib$(NAME)mx.a      # the static lib will be broken (see CFLAGS.SO)
 
24
LDFLAGS.SO.MX = -shared -soname $(LIB.SONAME.MX) --out-implib lib/$(LIB.DEVLNK.MX)