source: Makefile @ e330033

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since e330033 was e330033, checked in by Paul Brossier <piem@piem.org>, 9 years ago

Makefile: update to waf 1.8.14

  • Property mode set to 100644
File size: 489 bytes
RevLine 
[8e94af5]1all: build
2
3checkwaf:
4        @[ -f waf ] || make getwaf
5
6getwaf:
[e330033]7        curl https://waf.io/waf-1.8.14 > waf
[8e94af5]8        @[ -d wafilb ] || rm -fr waflib
[6121dd4]9        @chmod +x waf && ./waf --help > /dev/null
[e06ac8f]10        @mv .waf*/waflib . && rm -fr .waf-*
[6121dd4]11        @sed '/^#==>$$/,$$d' waf > waf2 && mv waf2 waf
[8e94af5]12        @chmod +x waf
13
14build: checkwaf
15        ./waf configure
16        ./waf build
17
[972a326]18build_python:
19        cd python && ./setup.py build
20
21clean_python:
22        cd python && ./setup.py clean
23
[ddd9861]24clean:
25        ./waf clean
26
[8e94af5]27distcheck: build
28        ./waf distcheck
29
30help:
31        ./waf --help
Note: See TracBrowser for help on using the repository browser.