2019-08-02 18:41:09 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2019-10-08 01:19:58 -06:00
|
|
|
make \
|
|
|
|
prefix=/usr \
|
|
|
|
CC="${CC:-gcc} $CFLAGS $CXXFLAGS" \
|
|
|
|
-f unix/Makefile generic
|
|
|
|
|
|
|
|
make \
|
|
|
|
prefix="$1/usr" \
|
|
|
|
MANDIR="$1/usr/share/man/man1" \
|
|
|
|
-f unix/Makefile install
|
2019-08-02 18:41:09 -06:00
|
|
|
|