blob: 03e300646b2c0085ae1ceadb1f7abe8435a10042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Keep track of files we don't install:
# Common list:
NOT_INSTALLED := \
dri/usr/include/GL/wglext.h \
dri/usr/include/GL/wmesa.h \
usr/include/GL/glext.h \
usr/include/GL/gl.h \
usr/include/GL/gl_mangle.h \
usr/include/GL/glxext.h \
usr/include/GL/glx.h \
usr/include/GL/glx_mangle.h \
usr/include/GL/osmesa.h \
usr/include/GL/wglext.h \
usr/include/GL/wmesa.h
# Architecture-specific additional files:
NOT_INSTALLED_i386 = \
usr/lib/*/i686/cmov/libGL.so \
usr/lib/*/i686/cmov/pkgconfig/gl.pc
# Same for linux, kfreebsd, and hurd on i386:
NOT_INSTALLED_kfreebsd-i386 = $(NOT_INSTALLED_i386)
NOT_INSTALLED_hurd-i386 = $(NOT_INSTALLED_i386)
# Detect the current architecture and add the files if any:
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
NOT_INSTALLED += $(NOT_INSTALLED_$(DEB_HOST_ARCH))
|