Changeset f1fc216
- Timestamp:
- Dec 11, 2016, 12:48:36 AM (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:
- dd93e80
- Parents:
- 5f9729d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5f9729d rf1fc216 70 70 71 71 list_installed: 72 find $(DESTDIR) -ls | \ 73 sed 's|$(DESTDIR)|/«destdir»|' 72 find $(DESTDIR) -ls | sed 's|$(DESTDIR)|/«destdir»|' 74 73 75 74 list_installed_python: 76 ( find $(PYDESTDIR) -ls || make list_installed_python_package ) | \77 sed 's|$(PYDESTDIR)|/«pydestdir»|'78 79 list_installed_python_package:80 75 pip show -f aubio 81 PACKAGE_LOCATION=$(shell pip show -f aubio | grep ^Location | cut -d \ -f 2) \82 make list_installed_python_package_content83 84 list_installed_python_package_content:85 ( [ -d $(PACKAGE_LOCATION) ] && find $(PACKAGE_LOCATION) -ls ) || \86 unzip -l $(PACKAGE_LOCATION)87 76 88 77 list_all_installed: list_installed list_installed_python … … 241 230 check_clean_python 242 231 243 244 html: 245 cd doc && make html 232 sphinx: configure 233 $(WAFCMD) sphinx $(WAFOPTS) 234 235 doxygen: configure 236 $(WAFCMD) doxygen $(WAFOPTS) 237 238 manpages: configure 239 $(WAFCMD) manpages $(WAFOPTS) 240 241 html: doxygen sphinx 242 243 docs: html manpages 246 244 247 245 dist: distclean expandwaf
Note: See TracChangeset
for help on using the changeset viewer.