blob: 9fca8bb1b3fdb152f2633f50a59ddf4e6e1f0aae (
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
|
PREFIX ?= /usr
INSTALL=install -c
$(warning $(CC) )
all: themes
echo $(escaped_prefix)
themes: copy_edc
cd themes && make
rm themes/nbeat-*.edc
install_themes:
cd themes && make install
install: install_themes
copy_edc:
cp themes/nbeat.edc themes/nbeat-black.edc
cp themes/nbeat.edc themes/nbeat-hd.edc
cp themes/nbeat.edc themes/nbeat-black-hd.edc
nbeat:
cd themes && make $@
nbeat-black:
cp themes/nbeat.edc themes/$@.edc
cd themes && make $@
rm themes/nbeat-*.edc
nbeat-hd:
cp themes/nbeat.edc themes/$@.edc
cd themes && make $@
rm themes/nbeat-*.edc
nbeat-black-hd:
cp themes/nbeat.edc themes/$@.edc
cd themes && make $@
rm themes/nbeat-*.edc
clean:
rm -rf themes/*.edj
rm -rf themes/nbeat-*.edc
distclean: clean
|