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

« back to all changes in this revision

Viewing changes to config/Makefile.cygwin

  • 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:
1
1
NAME = GLEW
2
 
GLEW_DEST ?= /usr/X11R6
 
2
GLEW_DEST ?= /usr
3
3
CC = cc
4
4
# use gcc for linking, with ld it does not work
5
5
LD = cc
6
 
ifneq (undefined, $(origin GLEW_MX))
7
 
CFLAGS.EXTRA = -DGLEW_MX
8
 
endif
9
 
LDFLAGS.SO = -shared -Wl,--out-implib,lib/$(LIB.DEVLNK)
10
 
LDFLAGS.EXTRA = -L/usr/X11R6/lib
 
6
LDFLAGS.EXTRA =
11
7
LIBDIR = $(GLEW_DEST)/lib
12
8
LDFLAGS.GL = -lXmu -lXi -lGLU -lGL -lXext -lX11
13
9
LDFLAGS.STATIC = -Wl,-Bstatic
15
11
WARN = -Wall -W
16
12
POPT = -O2
17
13
BIN.SUFFIX = .exe
18
 
LIB.SONAME = cyg$(NAME)-$(SO_MAJOR).dll
19
 
LIB.DEVLNK = lib$(NAME).dll.a
20
 
LIB.SHARED = cyg$(NAME)-$(SO_MAJOR).dll
21
 
LIB.STATIC = lib$(NAME).a
 
14
LIB.SONAME    = cyg$(NAME)-$(GLEW_MAJOR)-$(GLEW_MINOR).dll
 
15
LIB.DEVLNK    = lib$(NAME).dll.a
 
16
LIB.SHARED    = cyg$(NAME)-$(GLEW_MAJOR)-$(GLEW_MINOR).dll
 
17
LIB.STATIC    = lib$(NAME).a
 
18
LDFLAGS.SO    = -shared -Wl,--out-implib,lib/$(LIB.DEVLNK)
 
19
LIB.SONAME.MX = cyg$(NAME)mx-$(GLEW_MAJOR)-$(GLEW_MINOR).dll
 
20
LIB.DEVLNK.MX = lib$(NAME)mx.dll.a
 
21
LIB.SHARED.MX = cyg$(NAME)mx-$(GLEW_MAJOR)-$(GLEW_MINOR).dll
 
22
LIB.STATIC.MX = lib$(NAME)mx.a
 
23
LDFLAGS.SO.MX = -shared -Wl,--out-implib,lib/$(LIB.DEVLNK.MX)