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