12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-single-host
|
|
|
|
make
|
|
#make modules
|
|
#make check
|
|
make doc
|
|
make DESTDIR="$1" install
|