Changeset bee6e96
- Timestamp:
- Dec 2, 2016, 11:12:46 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:
- 3d14829
- Parents:
- 7faef58
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r7faef58 rbee6e96 13 13 PYDESTDIR:=$(PWD)/build/pydist 14 14 15 BUILDID=$(shell mktemp -d -p $(PWD)/dist/)16 17 15 # default install locations 18 16 PREFIX?=/usr/local … … 59 57 find $(DESTDIR) -ls | \ 60 58 sed 's|$(DESTDIR)|/«destdir»|' 61 tar --full-time --mtime=$(PWD)/src/aubio.h -jcvf $(BUILDID)/aubio-dist.tar.bz2 -C $(DESTDIR)/ .62 59 63 60 list_installed_python: 64 61 ( find $(PYDESTDIR) -ls || make list_installed_python_package ) | \ 65 62 sed 's|$(PYDESTDIR)|/«pydestdir»|' 66 [ -d $(PYDESTDIR) ] && \67 tar --full-time --mtime=$(PWD)/src/aubio.h -jcvf $(BUILDID)/python-aubio-dist.tar.bz2 -C $(PYDESTDIR)/ . || \68 true69 63 70 64 list_installed_python_package: … … 76 70 ( [ -d $(PACKAGE_LOCATION) ] && find $(PACKAGE_LOCATION) -ls ) || \ 77 71 unzip -l $(PACKAGE_LOCATION) 78 cp -prv $(PACKAGE_LOCATION) $(BUILDID)79 72 80 73 list_all_installed: list_installed list_installed_python
Note: See TracChangeset
for help on using the changeset viewer.