10 lines
206 B
Makefile
10 lines
206 B
Makefile
prepare:
|
|
git clone https://mirrors.nav.ro/gnu/bison/bison-1.25.tar.gz bison
|
|
cd bison
|
|
make:
|
|
@./configure --prefix=${PREFIX}/USR
|
|
make
|
|
install:
|
|
make install DESTDIR="${PREFIX}"
|
|
uninstall:
|
|
make uninstall
|