diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-27 17:33:28 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-27 17:33:28 +0200 |
commit | 9ba9e9a264b1ca731e50befe28efbcc2f126cda7 (patch) | |
tree | 651cf64179921453cdbff6044369b1ce44b3f84d /configure | |
parent | 9d4f5a8104b9539d65303a6f63517ba5eb037725 (diff) | |
parent | 1c4108284509c1950d3b208aa27df9d768149841 (diff) | |
download | ponysay-9ba9e9a264b1ca731e50befe28efbcc2f126cda7.tar.gz ponysay-9ba9e9a264b1ca731e50befe28efbcc2f126cda7.tar.bz2 ponysay-9ba9e9a264b1ca731e50befe28efbcc2f126cda7.zip |
Merge branch 'develop'
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -12,9 +12,11 @@ function makeMakefile() echo echo -e 'default: all\n' echo -e 'all: build\n' - for func in $(echo 'build' 'prebuilt' 'install' 'uninstall' 'uninstall-old' 'clean' 'clean-old' 'view'); do - echo -e "$func"':\n\t./setup.py $(PARAMS) '"$func"'\n' + for func in $(echo 'build' 'prebuilt' 'uninstall' 'uninstall-old' 'clean' 'clean-old' 'view'); do + echo -e "$func"':\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) '"$func"'\n' done + echo -e 'install-build:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) install\n' + echo -e 'install:\n\t./setup.py ---DESTDIR="$(DESTDIR)" ---PREFIX="$(PREFIX)" $(PARAMS) prebuilt\n' } |