Initial commit

This commit is contained in:
Ahmet Inan 2021-06-09 23:53:42 +02:00
commit 3546d516b1
7 changed files with 875 additions and 0 deletions

20
Makefile Normal file
View file

@ -0,0 +1,20 @@
CXXFLAGS = -std=c++11 -W -Wall -Ofast -fno-exceptions -fno-rtti -march=native -I../dsp -I../code
CXX = clang++ -stdlib=libc++
#CXX = g++
.PHONY: all
all: encode decode
encode: encode.cc
$(CXX) $(CXXFLAGS) $< -o $@
decode: decode.cc
$(CXX) $(CXXFLAGS) $< -o $@
.PHONY: clean
clean:
rm -f encode decode