mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
Initial commit
This commit is contained in:
commit
3546d516b1
7 changed files with 875 additions and 0 deletions
20
Makefile
Normal file
20
Makefile
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue