Voxifera/Makefile

10 lines
260 B
Makefile
Raw Normal View History

2009-05-24 15:22:59 +02:00
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
2009-05-24 15:22:59 +02:00
clean:
rm vocal
install:
mkdir -p /usr/local/bin
cp vocal /usr/local/bin