10 lines
123 B
Plaintext
10 lines
123 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export CFLAGS="$CFLAGS -fcommon"
|
||
|
|
||
|
make -C src
|
||
|
make -C src \
|
||
|
DESTDIR="$1" \
|
||
|
prefix=/usr \
|
||
|
install
|