mirror of
https://github.com/BlackLight/Voxifera.git
synced 2024-11-24 04:25:11 +01:00
10 lines
229 B
Makefile
10 lines
229 B
Makefile
|
all:
|
||
|
gcc -Wall -ansi -pedantic -o vocal main.c dsp.c utils.c -lm -w -O3 -funroll-loops -fno-rtti -ffast-math -fno-stack-protector -ffunction-sections
|
||
|
|
||
|
clean:
|
||
|
rm vocal
|
||
|
|
||
|
install:
|
||
|
mkdir -p /usr/local/bin
|
||
|
cp vocal /usr/local/bin
|