11 lines
172 B
Makefile
11 lines
172 B
Makefile
prepare:
|
|
git clone http://git.savannah.gnu.org/r/m4.git
|
|
cd m4
|
|
make:
|
|
export CFLAGS="$CFLAGS -static"
|
|
./configure
|
|
make
|
|
install:
|
|
make install
|
|
uninstall:
|
|
make uninstall
|