repo/m4/Makefile

12 lines
204 B
Makefile
Raw Normal View History

2021-06-29 21:49:46 +03:00
prepare:
git clone http://git.savannah.gnu.org/r/m4.git
cd m4
$(MAKE):
2021-06-29 21:49:46 +03:00
export CFLAGS="$CFLAGS -static"
./configure
$(MAKE)
2021-06-29 21:49:46 +03:00
install:
$(MAKE) install DESTDIR="${PREFIX}"
2021-06-29 21:49:46 +03:00
uninstall:
$(MAKE) uninstall