File: Makefile.am

package info (click to toggle)
mesa 3.1-17
  • links: PTS
  • area: main
  • in suites: potato
  • size: 10,908 kB
  • ctags: 19,599
  • sloc: ansic: 132,736; asm: 10,554; sh: 9,193; cpp: 3,540; makefile: 1,377
file content (34 lines) | stat: -rw-r--r-- 643 bytes parent folder | download
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
29
30
31
32
33
34
## Process this file with automake to produce Makefile.in

AUTOMAKE_OPTIONS = no-dependencies

INCLUDES = -I$(top_srcdir)/include

# Build a libtool library for installation in libdir.
lib_LTLIBRARIES = libGLU.la

libGLU_la_LDFLAGS = -version-info $(LIBGLU_VERSION)
libGLU_la_SOURCES = \
	all.h \
	glu.c \
	gluP.h \
	mipmap.c \
	nurbs.c \
	nurbs.h \
	nurbscrv.c \
	nurbssrf.c \
	nurbsutl.c \
	project.c \
	quadric.c \
	tess.c \
	tess_fist.c \
	tess_hash.c \
	tess_heap.c \
	tess_winding.c \
	tess_clip.c

strip:
	-if strip -V 2>&1  | grep "GNU" > /dev/null; then \
		strip --strip-unneeded .libs/*.so; \
		strip --strip-debug .libs/*.a; \
	fi