8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# Install our pre-configured Makefile.
|
||
|
cp makefile.mid ./Makefile
|
||
|
|
||
|
make LDFLAGS="$LDFLAGS -static"
|
||
|
make DESTDIR="$1" PREFIX=/usr install
|