repo/gcc/Makefile

12 lines
248 B
Makefile
Raw Normal View History

2021-01-29 10:44:55 +02:00
prepare:
git clone git://gcc.gnu.org/git/gcc.git
cd gcc
2021-01-29 10:44:55 +02:00
gcc:
mkdir build
cd build
./configure --prefix=${PREFIX}/usr --enable-languages=c,c++,d,fortran,go,objc,obj-c++
2021-01-29 10:44:55 +02:00
install:
make install DESTDIR="${PREFIX}"
2021-01-29 10:44:55 +02:00
uninstall:
2021-06-29 01:05:14 +03:00
rm -rf /usr/bin/gcc