mirror of
https://github.com/BlackLight/Voxifera.git
synced 2024-11-24 04:25:11 +01:00
9 lines
276 B
Makefile
9 lines
276 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 -funsafe-math-optimizations -fno-trapping-math
|
|
|
|
clean:
|
|
rm vocal
|
|
|
|
install:
|
|
mkdir -p /usr/local/bin
|
|
cp vocal /usr/local/bin
|