mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-29 15:37:59 +01:00
removing configure
This commit is contained in:
parent
ae2071478f
commit
3b916c2039
1 changed files with 0 additions and 24 deletions
24
configure
vendored
24
configure
vendored
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
|
|
||||||
function makeMakefile()
|
|
||||||
{
|
|
||||||
params=''
|
|
||||||
for arg in "$@"; do
|
|
||||||
params="$params '$(echo $arg | sed -e "s/'/'\\''/g")'"
|
|
||||||
done
|
|
||||||
|
|
||||||
echo 'PARAMS ='"$params"
|
|
||||||
echo
|
|
||||||
echo -e 'default: all\n'
|
|
||||||
echo -e 'all: build\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'
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
makeMakefile "$@" > Makefile
|
|
||||||
|
|
Loading…
Reference in a new issue