9 lines
160 B
Bash
9 lines
160 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
(cd $(dirname $0);
|
||
|
touch ChangeLog NEWS &&
|
||
|
autoreconf --install --symlink &&
|
||
|
autoreconf &&
|
||
|
./configure --enable-maintainer-mode $@
|
||
|
)
|