-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (35 loc) · 924 Bytes
/
Makefile
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
# Copyright 2016 Google Inc.
# This program is licensed under the terms of the GNU GPLv2; see COPYING.
FL=alsa/Front_Left.wav
FR=alsa/Front_Right.wav
FC=alsa/Front_Center.wav
RL=alsa/Rear_Left.wav
RR=alsa/Rear_Right.wav
RC=alsa/Rear_Center.wav
SL=alsa/Side_Left.wav
SR=alsa/Side_Right.wav
LFE=alsa/Noise.wav
OUT=stereo.flac \
center.flac \
quad.flac \
surround50.flac \
surround51.flac \
surround61.flac \
surround71.flac
all: $(OUT)
stereo.flac: $(FL) $(FR)
src/join.py $+ $@
center.flac: $(FL) $(FR) $(FC)
src/join.py $+ $@
quad.flac: $(FL) $(FR) $(RL) $(RR)
src/join.py $+ $@
surround50.flac: $(FL) $(FR) $(FC) $(RL) $(RR)
src/join.py $+ $@
surround51.flac: $(FL) $(FR) $(FC) $(LFE) $(RL) $(RR)
src/join.py $+ $@
surround61.flac: $(FL) $(FR) $(FC) $(LFE) $(RC) $(SL) $(SR)
src/join.py $+ $@
surround71.flac: $(FL) $(FR) $(FC) $(LFE) $(RL) $(RR) $(SL) $(SR)
src/join.py $+ $@
clean:
rm -f $(OUT)