forked from andrewcsmith/pippi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
54 lines (38 loc) · 1.13 KB
/
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
47
48
49
50
51
52
53
54
.PHONY: test test-fft test-soundfont test-grains test-wavesets test-fx test-noise test-shapes test-oscs test-soundbuffer test-lists build
test:
python -m unittest discover -s tests -p 'test_*.py' -v
test-fft:
python -m unittest tests/test_fft.py -v
test-soundfont:
python -m unittest tests/test_soundfont.py -v
test-grains:
python -m unittest tests/test_graincloud.py -v
test-wavesets:
python -m unittest tests/test_wavesets.py -v
test-wavetables:
python -m unittest tests/test_wavetables.py -v
test-fx:
python -m unittest tests/test_fx.py -v
test-noise:
python -m unittest tests/test_noise.py -v
test-shapes:
python -m unittest tests/test_shapes.py -v
test-oscs:
python -m unittest tests/test_oscs.py -v
test-soundbuffer:
python -m unittest tests/test_soundbuffer.py -v
test-soundpipe:
python -m unittest tests/test_soundpipe.py -v
test-lists:
python -m unittest tests/test_lists.py -v
clean:
rm -rf build/
rm -rf pippi/*.c
rm -rf pippi/*.so
install:
pip install -r requirements.txt
git submodule update --init
cd modules/Soundpipe && make && sudo make install
python setup.py develop
build:
python setup.py develop