11 lines
233 B
Makefile
11 lines
233 B
Makefile
prepare:
|
|
wget -O bison.tar.gz https://mirrors.nav.ro/gnu/bison/bison-1.25.tar.gz
|
|
tar -xf bison.tar.gz
|
|
cd bison
|
|
make:
|
|
@./configure --prefix=${PREFIX}/usr
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|