Changeset c0c3f33
- Timestamp:
- Dec 10, 2016, 11:05:41 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- f4a5d37
- Parents:
- 3aad0b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r3aad0b1 rc0c3f33 1 #!/usr/bin/make -f 2 # -*- makefile -*- 3 1 4 WAFCMD=python waf 2 5 WAFURL=https://waf.io/waf-1.8.22 … … 13 16 WAFOPTS += $(shell [ -z $(HAVE_AUBIO_DOUBLE) ] || echo --enable-double ) 14 17 18 PIPOPTS += --verbose 19 15 20 DESTDIR:=$(PWD)/build/dist 16 21 PYDESTDIR:=$(PWD)/build/pydist … … 98 103 deps_python: 99 104 # install or upgrade python requirements 100 pip install --verbose--requirement requirements.txt105 pip install $(PIPOPTS) --requirement requirements.txt 101 106 102 107 # use pip or distutils? … … 108 113 install_python_with_pip: 109 114 # install package 110 pip install --verbose.115 pip install $(PIPOPTS) . 111 116 112 117 uninstall_python_with_pip: … … 115 120 116 121 install_python_with_distutils: 117 ./setup.py install $( DISTUTILSOPTS)122 ./setup.py install $(PIPOPTS) $(DISTUTILSOPTS) 118 123 119 124 uninstall_python_with_distutils:
Note: See TracChangeset
for help on using the changeset viewer.