~ubuntu-branches/ubuntu/natty/mesa/natty-proposed

« back to all changes in this revision

Viewing changes to progs/openvg/trivial/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Robert Hooker, Robert Hooker, Christopher James Halse Rogers
  • Date: 2010-09-14 08:55:40 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100914085540-m4fpl0hdjlfd4jgz
Tags: 7.9~git20100909-0ubuntu1
[ Robert Hooker ]
* New upstream git snapshot up to commit 94118fe2d4b1e5 (LP: #631413)
* New features include ATI HD5xxx series support in r600, and a vastly
  improved glsl compiler.
* Remove pre-generated .pc's, use the ones generated at build time
  instead.
* Remove all references to mesa-utils now that its no longer shipped
  with the mesa source.
* Disable the experimental ARB_fragment_shader option by default on
  i915, it exposes incomplete functionality that breaks KDE compositing
  among other things. It can be enabled via driconf still. (LP: #628930).

[ Christopher James Halse Rogers ]
* debian/patches/04_osmesa_version.diff:
  - Refresh for new upstream
* Bugs fixed in this release:
  - Fixes severe rendering corruption in Unity on radeon (LP: #628727,
    LP: #596292, LP: #599741, LP: #630315, LP: #613694, LP: #599741).
  - Also fixes rendering in gnome-shell (LP: #578619).
  - Flickering in OpenGL apps on radeon (LP: #626943, LP: #610541).
  - Provides preliminary support for new intel chips (LP: #601052).
* debian/rules:
  - Update configure flags to match upstream reshuffling.
  - Explicitly remove gallium DRI drivers that we don't want to ship.
* Update debian/gbp.conf for this Maverick-specific packaging
* libegl1-mesa-dri-x11,kms: There are no longer separate kms or x11 drivers
  for EGL, libegl1-mesa-drivers now contains a single driver that provides
  both backends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# These programs aren't intended to be included with the normal distro.
2
 
# They're not too interesting but they're good for testing.
3
 
 
4
 
TOP = ../../../
5
 
include $(TOP)/configs/current
6
 
 
7
 
INCLUDES = -I. -I$(TOP)/include
8
 
LIBS=-L$(TOP)/$(LIB_DIR) -lm -lX11 -lEGL -lOpenVG -lpthread
9
 
CFLAGS += $(INCLUDES)
10
 
 
11
 
HEADERS=eglcommon.h
12
 
 
13
 
PROGRAMS = \
14
 
        arc \
15
 
        cap \
16
 
        clear \
17
 
        coord \
18
 
        dash \
19
 
        ellipse \
20
 
        filter \
21
 
        gradorigin \
22
 
        lineto \
23
 
        lingrad \
24
 
        lookup \
25
 
        mask4 \
26
 
        mask \
27
 
        path3 \
28
 
        radialgrad \
29
 
        readpixels \
30
 
        roundedrect \
31
 
        star-nonzero \
32
 
        star-oddeven \
33
 
        stroke2 \
34
 
        stroke \
35
 
        vguarc
36
 
 
37
 
 
38
 
.c.o:
39
 
        $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
40
 
 
41
 
 
42
 
 
43
 
default: $(PROGRAMS)
44
 
 
45
 
 
46
 
arc: arc.c eglcommon.o
47
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
48
 
 
49
 
cap: cap.c eglcommon.o
50
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
51
 
 
52
 
clear: clear.c eglcommon.o
53
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
54
 
 
55
 
coord: coord.c eglcommon.o
56
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
57
 
 
58
 
dash: dash.c eglcommon.o
59
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
60
 
 
61
 
ellipse: ellipse.c eglcommon.o
62
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
63
 
 
64
 
filter: filter.c eglcommon.o
65
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
66
 
 
67
 
gradorigin: gradorigin.c eglcommon.o
68
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
69
 
 
70
 
image: image.c eglcommon.o
71
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
72
 
 
73
 
lineto: lineto.c eglcommon.o
74
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
75
 
 
76
 
lingrad: lingrad.c eglcommon.o
77
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
78
 
 
79
 
lookup: lookup.c eglcommon.o
80
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
81
 
 
82
 
mask: mask.c eglcommon.o
83
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
84
 
 
85
 
mask4: mask4.c eglcommon.o
86
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
87
 
 
88
 
path3: path3.c eglcommon.o
89
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
90
 
 
91
 
pattern: pattern.c eglcommon.o
92
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
93
 
 
94
 
radialgrad: radialgrad.c eglcommon.o
95
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
96
 
 
97
 
readpixels: readpixels.c eglcommon.o
98
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
99
 
 
100
 
roundedrect: roundedrect.c eglcommon.o
101
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
102
 
 
103
 
star-nonzero: star-nonzero.c eglcommon.o
104
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
105
 
 
106
 
star-oddeven: star-oddeven.c eglcommon.o
107
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
108
 
 
109
 
stroke: stroke.c eglcommon.o
110
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
111
 
 
112
 
stroke2: stroke2.c eglcommon.o
113
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
114
 
 
115
 
vguarc: vguarc.c eglcommon.o
116
 
        $(CC) $(CFLAGS) $^ $(LIBS)  $(APP_LIB_DEPS) -o $@
117
 
 
118
 
 
119
 
 
120
 
eglcommon.o: eglcommon.c $(HEADERS)
121
 
        $(CC) -c $(CFLAGS) eglcommon.c
122
 
 
123
 
 
124
 
clean:
125
 
        rm -f *.o *~
126
 
        rm -f *.so
127
 
        rm -f $(PROGRAMS)