aboutsummaryrefslogtreecommitdiff
path: root/data/styles
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2013-05-26 09:30:15 (GMT)
committerSami Kerola <kerolasa@iki.fi>2013-05-26 09:38:11 (GMT)
commit7541054b299bbd61310ab0456cf4f25b7a672de3 (patch)
tree47878d28304cb560a4f31bc98466a9347e8edb6c /data/styles
parent82e300c7bac1542f27668a8d7e234b4dd6ea1211 (diff)
downloadfluxbox-7541054b299bbd61310ab0456cf4f25b7a672de3.zip
fluxbox-7541054b299bbd61310ab0456cf4f25b7a672de3.tar.bz2
build-sys: move to non-recursive build
This rather large change will attempts to make 'make' to work better. See excellent paper 'Recursive Make Considered Harmful' by Peter Miller for further explanation why several make files is worse than one for whole project. Note. The tests are build with 'make check' rather than defining TEST. Reference: http://miller.emu.id.au/pmiller/books/rmch/ Reference: http://karelzak.blogspot.co.uk/2013/02/non-recursive-automake.html
Diffstat (limited to 'data/styles')
-rw-r--r--data/styles/BlueFlux/Makefile.am6
-rw-r--r--data/styles/BlueFlux/Makemodule.am3
-rw-r--r--data/styles/BlueFlux/pixmaps/Makefile.am11
-rw-r--r--data/styles/BlueFlux/pixmaps/Makemodule.am24
-rw-r--r--data/styles/Emerge/Makefile.am6
-rw-r--r--data/styles/Emerge/Makemodule.am3
-rw-r--r--data/styles/Emerge/pixmaps/Makefile.am8
-rw-r--r--data/styles/Emerge/pixmaps/Makemodule.am21
-rw-r--r--data/styles/Makefile.am11
-rw-r--r--data/styles/Makefile.include10
-rw-r--r--data/styles/Makemodule.am19
-rw-r--r--data/styles/arch/Makefile.am6
-rw-r--r--data/styles/arch/Makemodule.am3
-rw-r--r--data/styles/arch/pixmaps/Makefile.am12
-rw-r--r--data/styles/arch/pixmaps/Makemodule.am33
-rw-r--r--data/styles/bloe/Makefile.am6
-rw-r--r--data/styles/bloe/Makemodule.am3
-rw-r--r--data/styles/bloe/pixmaps/Makefile.am13
-rw-r--r--data/styles/bloe/pixmaps/Makemodule.am34
-rw-r--r--data/styles/bora_black/Makefile.am5
-rw-r--r--data/styles/bora_black/Makemodule.am3
-rw-r--r--data/styles/bora_blue/Makefile.am5
-rw-r--r--data/styles/bora_blue/Makemodule.am3
-rw-r--r--data/styles/bora_green/Makefile.am5
-rw-r--r--data/styles/bora_green/Makemodule.am3
-rw-r--r--data/styles/carp/Makefile.am5
-rw-r--r--data/styles/carp/Makemodule.am3
-rw-r--r--data/styles/green_tea/Makefile.am5
-rw-r--r--data/styles/green_tea/Makemodule.am3
-rw-r--r--data/styles/ostrich/Makefile.am5
-rw-r--r--data/styles/ostrich/Makemodule.am3
-rw-r--r--data/styles/zimek_bisque/Makefile.am5
-rw-r--r--data/styles/zimek_bisque/Makemodule.am3
-rw-r--r--data/styles/zimek_darkblue/Makefile.am5
-rw-r--r--data/styles/zimek_darkblue/Makemodule.am3
-rw-r--r--data/styles/zimek_green/Makefile.am5
-rw-r--r--data/styles/zimek_green/Makemodule.am3
37 files changed, 170 insertions, 134 deletions
diff --git a/data/styles/BlueFlux/Makefile.am b/data/styles/BlueFlux/Makefile.am
deleted file mode 100644
index 86965dc..0000000
--- a/data/styles/BlueFlux/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
1SUBDIRS=pixmaps
2styledir = $(pkgdatadir)/styles/BlueFlux
3
4style_DATA = theme.cfg
5
6include ../Makefile.include
diff --git a/data/styles/BlueFlux/Makemodule.am b/data/styles/BlueFlux/Makemodule.am
new file mode 100644
index 0000000..0357a9d
--- /dev/null
+++ b/data/styles/BlueFlux/Makemodule.am
@@ -0,0 +1,3 @@
1blueflux_styledir = $(pkgdatadir)/styles/BlueFlux
2
3dist_blueflux_style_DATA = data/styles/BlueFlux/theme.cfg
diff --git a/data/styles/BlueFlux/pixmaps/Makefile.am b/data/styles/BlueFlux/pixmaps/Makefile.am
deleted file mode 100644
index a247c5a..0000000
--- a/data/styles/BlueFlux/pixmaps/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
1styledir = $(pkgdatadir)/styles/BlueFlux/pixmaps
2
3style_DATA = button_close_active.xpm button_close_pressed.xpm \
4 button_close_unfocus.xpm button_max_active.xpm button_max_pressed.xpm \
5 button_max_unfocus.xpm button_min_active.xpm button_min_pressed.xpm \
6 button_min_unfocus.xpm button_stick_active.xpm button_stick_pressed.xpm \
7 button_stick_unfocus.xpm button_stuck.xpm button_stuck_unfocus.xpm \
8 button_toolbar.xpm button_toolbar_pressed.xpm menu_frame.xpm title_bar.xpm \
9 title_bar_unfocus.xpm toolbar.xpm toolbar_label.xpm
10
11include ../../Makefile.include
diff --git a/data/styles/BlueFlux/pixmaps/Makemodule.am b/data/styles/BlueFlux/pixmaps/Makemodule.am
new file mode 100644
index 0000000..9cfe8c4
--- /dev/null
+++ b/data/styles/BlueFlux/pixmaps/Makemodule.am
@@ -0,0 +1,24 @@
1blueflux_pixmaps_styledir = $(pkgdatadir)/styles/BlueFlux/pixmaps
2
3dist_blueflux_pixmaps_style_DATA = \
4 data/styles/BlueFlux/pixmaps/button_close_active.xpm \
5 data/styles/BlueFlux/pixmaps/button_close_pressed.xpm \
6 data/styles/BlueFlux/pixmaps/button_close_unfocus.xpm \
7 data/styles/BlueFlux/pixmaps/button_max_active.xpm \
8 data/styles/BlueFlux/pixmaps/button_max_pressed.xpm \
9 data/styles/BlueFlux/pixmaps/button_max_unfocus.xpm \
10 data/styles/BlueFlux/pixmaps/button_min_active.xpm \
11 data/styles/BlueFlux/pixmaps/button_min_pressed.xpm \
12 data/styles/BlueFlux/pixmaps/button_min_unfocus.xpm \
13 data/styles/BlueFlux/pixmaps/button_stick_active.xpm \
14 data/styles/BlueFlux/pixmaps/button_stick_pressed.xpm \
15 data/styles/BlueFlux/pixmaps/button_stick_unfocus.xpm \
16 data/styles/BlueFlux/pixmaps/button_stuck.xpm \
17 data/styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm \
18 data/styles/BlueFlux/pixmaps/button_toolbar.xpm \
19 data/styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm \
20 data/styles/BlueFlux/pixmaps/menu_frame.xpm \
21 data/styles/BlueFlux/pixmaps/title_bar.xpm \
22 data/styles/BlueFlux/pixmaps/title_bar_unfocus.xpm \
23 data/styles/BlueFlux/pixmaps/toolbar.xpm \
24 data/styles/BlueFlux/pixmaps/toolbar_label.xpm
diff --git a/data/styles/Emerge/Makefile.am b/data/styles/Emerge/Makefile.am
deleted file mode 100644
index 4054bd7..0000000
--- a/data/styles/Emerge/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
1SUBDIRS=pixmaps
2styledir = $(pkgdatadir)/styles/Emerge
3
4style_DATA = theme.cfg
5
6include ../Makefile.include
diff --git a/data/styles/Emerge/Makemodule.am b/data/styles/Emerge/Makemodule.am
new file mode 100644
index 0000000..150b600
--- /dev/null
+++ b/data/styles/Emerge/Makemodule.am
@@ -0,0 +1,3 @@
1emerge_styledir = $(pkgdatadir)/styles/Emerge
2
3dist_emerge_style_DATA = data/styles/Emerge/theme.cfg
diff --git a/data/styles/Emerge/pixmaps/Makefile.am b/data/styles/Emerge/pixmaps/Makefile.am
deleted file mode 100644
index 4165e1c..0000000
--- a/data/styles/Emerge/pixmaps/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
1styledir = $(pkgdatadir)/styles/Emerge/pixmaps
2
3style_DATA = bullet.xpm close.xpm icon.xpm max.xpm stick-unfocus.xpm \
4 stuck-unfocus.xpm close-pressed.xpm icon-pressed.xpm max-pressed.xpm \
5 selected.xpm stick.xpm stuck.xpm close-unfocus.xpm icon-unfocus.xpm \
6 max-unfocus.xpm stick-pressed.xpm stuck-pressed.xpm unselected.xpm
7
8include ../../Makefile.include
diff --git a/data/styles/Emerge/pixmaps/Makemodule.am b/data/styles/Emerge/pixmaps/Makemodule.am
new file mode 100644
index 0000000..42b0a4a
--- /dev/null
+++ b/data/styles/Emerge/pixmaps/Makemodule.am
@@ -0,0 +1,21 @@
1emerge_pixmaps_styledir = $(pkgdatadir)/styles/Emerge/pixmaps
2
3dist_emerge_pixmaps_style_DATA = \
4 data/styles/Emerge/pixmaps/bullet.xpm \
5 data/styles/Emerge/pixmaps/close-pressed.xpm \
6 data/styles/Emerge/pixmaps/close-unfocus.xpm \
7 data/styles/Emerge/pixmaps/close.xpm \
8 data/styles/Emerge/pixmaps/icon-pressed.xpm \
9 data/styles/Emerge/pixmaps/icon-unfocus.xpm \
10 data/styles/Emerge/pixmaps/icon.xpm \
11 data/styles/Emerge/pixmaps/max-pressed.xpm \
12 data/styles/Emerge/pixmaps/max-unfocus.xpm \
13 data/styles/Emerge/pixmaps/max.xpm \
14 data/styles/Emerge/pixmaps/selected.xpm \
15 data/styles/Emerge/pixmaps/stick-pressed.xpm \
16 data/styles/Emerge/pixmaps/stick-unfocus.xpm \
17 data/styles/Emerge/pixmaps/stick.xpm \
18 data/styles/Emerge/pixmaps/stuck-pressed.xpm \
19 data/styles/Emerge/pixmaps/stuck-unfocus.xpm \
20 data/styles/Emerge/pixmaps/stuck.xpm \
21 data/styles/Emerge/pixmaps/unselected.xpm
diff --git a/data/styles/Makefile.am b/data/styles/Makefile.am
deleted file mode 100644
index 997aac5..0000000
--- a/data/styles/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
1SUBDIRS=Emerge BlueFlux bora_black bora_blue bora_green \
2 zimek_bisque zimek_darkblue zimek_green \
3 arch carp ostrich green_tea bloe
4
5styledir = $(pkgdatadir)/styles
6
7style_DATA = Makro MerleyKay Artwiz Flux \
8 Nyz Operation Outcomes Results Shade LemonSpace \
9 Twice qnx-photon BlueNight Meta
10
11include Makefile.include
diff --git a/data/styles/Makefile.include b/data/styles/Makefile.include
deleted file mode 100644
index 2a99c2b..0000000
--- a/data/styles/Makefile.include
+++ /dev/null
@@ -1,10 +0,0 @@
1## included by all Makefile.am files under the data/styles directory
2
3MAINTAINERCLEANFILES = Makefile.in
4
5EXTRA_DIST=$(style_DATA)
6
7uninstall-hook:
8 rmdir $(DESTDIR)$(styledir)
9distclean-local:
10 rm -f *\~
diff --git a/data/styles/Makemodule.am b/data/styles/Makemodule.am
new file mode 100644
index 0000000..7239f1c
--- /dev/null
+++ b/data/styles/Makemodule.am
@@ -0,0 +1,19 @@
1styledir = $(pkgdatadir)/styles
2
3style_DATA = \
4 data/styles/Artwiz \
5 data/styles/BlueNight \
6 data/styles/Flux \
7 data/styles/LemonSpace \
8 data/styles/Makro \
9 data/styles/MerleyKay \
10 data/styles/Meta \
11 data/styles/Nyz \
12 data/styles/Operation \
13 data/styles/Outcomes \
14 data/styles/Results \
15 data/styles/Shade \
16 data/styles/Twice \
17 data/styles/qnx-photon
18
19EXTRA_DIST += $(style_DATA)
diff --git a/data/styles/arch/Makefile.am b/data/styles/arch/Makefile.am
deleted file mode 100644
index bc1aafa..0000000
--- a/data/styles/arch/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
1SUBDIRS=pixmaps
2styledir = $(pkgdatadir)/styles/arch
3
4style_DATA = theme.cfg
5
6include ../Makefile.include
diff --git a/data/styles/arch/Makemodule.am b/data/styles/arch/Makemodule.am
new file mode 100644
index 0000000..4ad28b9
--- /dev/null
+++ b/data/styles/arch/Makemodule.am
@@ -0,0 +1,3 @@
1arch_styledir = $(pkgdatadir)/styles/arch
2
3dist_arch_style_DATA = data/styles/arch/theme.cfg
diff --git a/data/styles/arch/pixmaps/Makefile.am b/data/styles/arch/pixmaps/Makefile.am
deleted file mode 100644
index fb94c36..0000000
--- a/data/styles/arch/pixmaps/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
1styledir = $(pkgdatadir)/styles/arch/pixmaps
2
3style_DATA = closepr.xpm gripfcs.xpm maxufcs.xpm menuiconufcs.xpm \
4 minufcs.xpm shadepr.xpm stickpr.xpm stuckufcs.xpm unselected.xpm \
5 unshadeufcs.xpm bullet.xpm closeufcs.xpm maxfcs.xpm \
6 menuiconfcs.xpm minfcs.xpm selected.xpm shadeufcs.xpm \
7 stickufcs.xpm tbarfcs.xpm unshadefcs.xpm closefcs.xpm \
8 frame.xpm maxpr.xpm menuiconpr.xpm minpr.xpm shadefcs.xpm \
9 stickfcs.xpm stuckfcs.xpm tbarufcs.xpm unshadepr.xpm
10
11
12include ../../Makefile.include
diff --git a/data/styles/arch/pixmaps/Makemodule.am b/data/styles/arch/pixmaps/Makemodule.am
new file mode 100644
index 0000000..fa47014
--- /dev/null
+++ b/data/styles/arch/pixmaps/Makemodule.am
@@ -0,0 +1,33 @@
1arch_pixmaps_styledir = $(pkgdatadir)/styles/arch/pixmaps
2
3dist_arch_pixmaps_style_DATA = \
4 data/styles/arch/pixmaps/bullet.xpm \
5 data/styles/arch/pixmaps/closefcs.xpm \
6 data/styles/arch/pixmaps/closepr.xpm \
7 data/styles/arch/pixmaps/closeufcs.xpm \
8 data/styles/arch/pixmaps/frame.xpm \
9 data/styles/arch/pixmaps/gripfcs.xpm \
10 data/styles/arch/pixmaps/maxfcs.xpm \
11 data/styles/arch/pixmaps/maxpr.xpm \
12 data/styles/arch/pixmaps/maxufcs.xpm \
13 data/styles/arch/pixmaps/menuiconfcs.xpm \
14 data/styles/arch/pixmaps/menuiconpr.xpm \
15 data/styles/arch/pixmaps/menuiconufcs.xpm \
16 data/styles/arch/pixmaps/minfcs.xpm \
17 data/styles/arch/pixmaps/minpr.xpm \
18 data/styles/arch/pixmaps/minufcs.xpm \
19 data/styles/arch/pixmaps/selected.xpm \
20 data/styles/arch/pixmaps/shadefcs.xpm \
21 data/styles/arch/pixmaps/shadepr.xpm \
22 data/styles/arch/pixmaps/shadeufcs.xpm \
23 data/styles/arch/pixmaps/stickfcs.xpm \
24 data/styles/arch/pixmaps/stickpr.xpm \
25 data/styles/arch/pixmaps/stickufcs.xpm \
26 data/styles/arch/pixmaps/stuckfcs.xpm \
27 data/styles/arch/pixmaps/stuckufcs.xpm \
28 data/styles/arch/pixmaps/tbarfcs.xpm \
29 data/styles/arch/pixmaps/tbarufcs.xpm \
30 data/styles/arch/pixmaps/unselected.xpm \
31 data/styles/arch/pixmaps/unshadefcs.xpm \
32 data/styles/arch/pixmaps/unshadepr.xpm \
33 data/styles/arch/pixmaps/unshadeufcs.xpm
diff --git a/data/styles/bloe/Makefile.am b/data/styles/bloe/Makefile.am
deleted file mode 100644
index ad574ba..0000000
--- a/data/styles/bloe/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
1SUBDIRS=pixmaps
2styledir = $(pkgdatadir)/styles/bloe
3
4style_DATA = theme.cfg
5
6include ../Makefile.include
diff --git a/data/styles/bloe/Makemodule.am b/data/styles/bloe/Makemodule.am
new file mode 100644
index 0000000..909f647
--- /dev/null
+++ b/data/styles/bloe/Makemodule.am
@@ -0,0 +1,3 @@
1bloe_styledir = $(pkgdatadir)/styles/bloe
2
3dist_bloe_style_DATA = data/styles/bloe/theme.cfg
diff --git a/data/styles/bloe/pixmaps/Makefile.am b/data/styles/bloe/pixmaps/Makefile.am
deleted file mode 100644
index 42226a0..0000000
--- a/data/styles/bloe/pixmaps/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
1styledir = $(pkgdatadir)/styles/bloe/pixmaps
2
3style_DATA = bullet.xpm closepr.xpm frame.xpm maxfcs.xpm \
4 maxufcs.xpm menuiconpr.xpm minfcs.xpm minufcs.xpm \
5 shadefcs.xpm shadeufcs.xpm stickpr.xpm stuckfcs.xpm \
6 tbarfcs.xpm unselected.xpm unshadepr.xpm \
7 windowlabelfcs.xpm closefcs.xpm closeufcs.xpm \
8 maxpr.xpm menuiconfcs.xpm menuiconufcs.xpm \
9 minpr.xpm selected.xpm shadepr.xpm stickfcs.xpm \
10 stickufcs.xpm stuckufcs.xpm tbarufcs.xpm \
11 unshadefcs.xpm unshadeufcs.xpm windowlabelufcs.xpm
12
13include ../../Makefile.include
diff --git a/data/styles/bloe/pixmaps/Makemodule.am b/data/styles/bloe/pixmaps/Makemodule.am
new file mode 100644
index 0000000..2d08d3b
--- /dev/null
+++ b/data/styles/bloe/pixmaps/Makemodule.am
@@ -0,0 +1,34 @@
1pixmaps_styledir = $(pkgdatadir)/styles/bloe/pixmaps
2
3dist_pixmaps_style_DATA = \
4 data/styles/bloe/pixmaps/bullet.xpm \
5 data/styles/bloe/pixmaps/closefcs.xpm \
6 data/styles/bloe/pixmaps/closepr.xpm \
7 data/styles/bloe/pixmaps/closeufcs.xpm \
8 data/styles/bloe/pixmaps/frame.xpm \
9 data/styles/bloe/pixmaps/maxfcs.xpm \
10 data/styles/bloe/pixmaps/maxpr.xpm \
11 data/styles/bloe/pixmaps/maxufcs.xpm \
12 data/styles/bloe/pixmaps/menuiconfcs.xpm \
13 data/styles/bloe/pixmaps/menuiconpr.xpm \
14 data/styles/bloe/pixmaps/menuiconufcs.xpm \
15 data/styles/bloe/pixmaps/minfcs.xpm \
16 data/styles/bloe/pixmaps/minpr.xpm \
17 data/styles/bloe/pixmaps/minufcs.xpm \
18 data/styles/bloe/pixmaps/selected.xpm \
19 data/styles/bloe/pixmaps/shadefcs.xpm \
20 data/styles/bloe/pixmaps/shadepr.xpm \
21 data/styles/bloe/pixmaps/shadeufcs.xpm \
22 data/styles/bloe/pixmaps/stickfcs.xpm \
23 data/styles/bloe/pixmaps/stickpr.xpm \
24 data/styles/bloe/pixmaps/stickufcs.xpm \
25 data/styles/bloe/pixmaps/stuckfcs.xpm \
26 data/styles/bloe/pixmaps/stuckufcs.xpm \
27 data/styles/bloe/pixmaps/tbarfcs.xpm \
28 data/styles/bloe/pixmaps/tbarufcs.xpm \
29 data/styles/bloe/pixmaps/unselected.xpm \
30 data/styles/bloe/pixmaps/unshadefcs.xpm \
31 data/styles/bloe/pixmaps/unshadepr.xpm \
32 data/styles/bloe/pixmaps/unshadeufcs.xpm \
33 data/styles/bloe/pixmaps/windowlabelfcs.xpm \
34 data/styles/bloe/pixmaps/windowlabelufcs.xpm
diff --git a/data/styles/bora_black/Makefile.am b/data/styles/bora_black/Makefile.am
deleted file mode 100644
index 4cb9ffb..0000000
--- a/data/styles/bora_black/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/bora_black
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/bora_black/Makemodule.am b/data/styles/bora_black/Makemodule.am
new file mode 100644
index 0000000..27f7221
--- /dev/null
+++ b/data/styles/bora_black/Makemodule.am
@@ -0,0 +1,3 @@
1bora_black_styledir = $(pkgdatadir)/styles/bora_black
2
3dist_bora_black_style_DATA = data/styles/bora_black/theme.cfg
diff --git a/data/styles/bora_blue/Makefile.am b/data/styles/bora_blue/Makefile.am
deleted file mode 100644
index c726064..0000000
--- a/data/styles/bora_blue/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/bora_blue
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/bora_blue/Makemodule.am b/data/styles/bora_blue/Makemodule.am
new file mode 100644
index 0000000..547b2e3
--- /dev/null
+++ b/data/styles/bora_blue/Makemodule.am
@@ -0,0 +1,3 @@
1bora_blue_styledir = $(pkgdatadir)/styles/bora_blue
2
3dist_bora_blue_style_DATA = data/styles/bora_blue/theme.cfg
diff --git a/data/styles/bora_green/Makefile.am b/data/styles/bora_green/Makefile.am
deleted file mode 100644
index 37d47e1..0000000
--- a/data/styles/bora_green/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/bora_green
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/bora_green/Makemodule.am b/data/styles/bora_green/Makemodule.am
new file mode 100644
index 0000000..ae52e15
--- /dev/null
+++ b/data/styles/bora_green/Makemodule.am
@@ -0,0 +1,3 @@
1bora_green_styledir = $(pkgdatadir)/styles/bora_green
2
3dist_bora_green_style_DATA = data/styles/bora_green/theme.cfg
diff --git a/data/styles/carp/Makefile.am b/data/styles/carp/Makefile.am
deleted file mode 100644
index 3e31178..0000000
--- a/data/styles/carp/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/carp
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/carp/Makemodule.am b/data/styles/carp/Makemodule.am
new file mode 100644
index 0000000..241901e
--- /dev/null
+++ b/data/styles/carp/Makemodule.am
@@ -0,0 +1,3 @@
1carp_styledir = $(pkgdatadir)/styles/carp
2
3dist_carp_style_DATA = data/styles/carp/theme.cfg
diff --git a/data/styles/green_tea/Makefile.am b/data/styles/green_tea/Makefile.am
deleted file mode 100644
index 899e028..0000000
--- a/data/styles/green_tea/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/green_tea
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/green_tea/Makemodule.am b/data/styles/green_tea/Makemodule.am
new file mode 100644
index 0000000..4ff80f2
--- /dev/null
+++ b/data/styles/green_tea/Makemodule.am
@@ -0,0 +1,3 @@
1green_tea_styledir = $(pkgdatadir)/styles/green_tea
2
3dist_green_tea_style_DATA = data/styles/green_tea/theme.cfg
diff --git a/data/styles/ostrich/Makefile.am b/data/styles/ostrich/Makefile.am
deleted file mode 100644
index c9879c8..0000000
--- a/data/styles/ostrich/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/ostrich
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/ostrich/Makemodule.am b/data/styles/ostrich/Makemodule.am
new file mode 100644
index 0000000..61536e2
--- /dev/null
+++ b/data/styles/ostrich/Makemodule.am
@@ -0,0 +1,3 @@
1ostrich_styledir = $(pkgdatadir)/styles/ostrich
2
3dist_ostrich_style_DATA = data/styles/ostrich/theme.cfg
diff --git a/data/styles/zimek_bisque/Makefile.am b/data/styles/zimek_bisque/Makefile.am
deleted file mode 100644
index 9869bdf..0000000
--- a/data/styles/zimek_bisque/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/zimek_bisque
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/zimek_bisque/Makemodule.am b/data/styles/zimek_bisque/Makemodule.am
new file mode 100644
index 0000000..3c20430
--- /dev/null
+++ b/data/styles/zimek_bisque/Makemodule.am
@@ -0,0 +1,3 @@
1zimek_bisque_styledir = $(pkgdatadir)/styles/zimek_bisque
2
3dist_zimek_bisque_style_DATA = data/styles/zimek_bisque/theme.cfg
diff --git a/data/styles/zimek_darkblue/Makefile.am b/data/styles/zimek_darkblue/Makefile.am
deleted file mode 100644
index a84b7f4..0000000
--- a/data/styles/zimek_darkblue/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/zimek_darkblue
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/zimek_darkblue/Makemodule.am b/data/styles/zimek_darkblue/Makemodule.am
new file mode 100644
index 0000000..88f06f1
--- /dev/null
+++ b/data/styles/zimek_darkblue/Makemodule.am
@@ -0,0 +1,3 @@
1zimek_darkblue_styledir = $(pkgdatadir)/styles/zimek_darkblue
2
3dist_zimek_darkblue_style_DATA = data/styles/zimek_darkblue/theme.cfg
diff --git a/data/styles/zimek_green/Makefile.am b/data/styles/zimek_green/Makefile.am
deleted file mode 100644
index 43dbb82..0000000
--- a/data/styles/zimek_green/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
1styledir = $(pkgdatadir)/styles/zimek_green
2
3style_DATA = theme.cfg
4
5include ../Makefile.include
diff --git a/data/styles/zimek_green/Makemodule.am b/data/styles/zimek_green/Makemodule.am
new file mode 100644
index 0000000..e42be6e
--- /dev/null
+++ b/data/styles/zimek_green/Makemodule.am
@@ -0,0 +1,3 @@
1zimek_green_styledir = $(pkgdatadir)/styles/zimek_green
2
3dist_zimek_green_style_DATA = data/styles/zimek_green/theme.cfg