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