blob: dc6c2dcec25a4831340e9ea029e561fa2f67348e (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
## Makefile.am for gimp/data/palettes
palettedatadir = $(gimpdatadir)/palettes
palettedata_DATA = \
Bears.gpl \
Bgold.gpl \
Blues.gpl \
Borders.gpl \
Browns_And_Yellows.gpl \
Caramel.gpl \
Cascade.gpl \
China.gpl \
Coldfire.gpl \
Cool_Colors.gpl \
Cranes.gpl \
Dark_pastels.gpl \
Default.gpl \
Ega.gpl \
Firecode.gpl \
Gold.gpl \
Grayblue.gpl \
Grays.gpl \
GrayViolet.gpl \
Greens.gpl \
Hilite.gpl \
Khaki.gpl \
Lights.gpl \
Muted.gpl \
Named_Colors.gpl \
News3.gpl \
Op2.gpl \
Paintjet.gpl \
Pastels.gpl \
Plasma.gpl \
Reds.gpl \
Reds_And_Purples.gpl \
Royal.gpl \
Tango.gpl \
Topographic.gpl \
Visibone.gpl \
Visibone_2.gpl \
Volcano.gpl \
Warm_Colors.gpl \
Web.gpl
EXTRA_DIST = $(palettedata_DATA)
|