aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2016-03-07 22:42:08 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2016-03-07 22:42:08 +0300
commitafba2342677988c11250594520c95936c1747eab (patch)
treea854c664d54b509959036ca03591fe26de07179f /src
parent925e9e45cd6640ffb71ed1ba31e9289ed06eebde (diff)
downloadatracdenc-afba2342677988c11250594520c95936c1747eab.tar.gz
old Makefiles removed
Diffstat (limited to 'src')
-rw-r--r--src/Makefile8
-rw-r--r--src/mdct/Makefile12
2 files changed, 0 insertions, 20 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 063964a..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-
-all:
- cd ./mdct && make && cd ../
- g++ -std=c++11 -O2 -g main.cpp wav.cpp aea.cpp transient_detector.cpp atracdenc.cpp bitstream/bitstream.cpp atrac/atrac1.cpp atrac/atrac1_dequantiser.cpp atrac/atrac1_scale.cpp atrac/atrac1_bitalloc.cpp mdct/mdct_impl.o -o atracdenc
-
-test:
- g++ -std=c++11 atracdenc_ut.cpp atracdenc.cpp aea.cpp bitstream/bitstream.cpp atrac/atrac1.cpp atrac/atrac1_dequantiser.cpp atrac/atrac1_scale.cpp atrac/atrac1_bitalloc.cpp -I ../3rd/gtest-1.7.0/include/ ../3rd/gtest-1.7.0/src/gtest-all.o ../3rd/gtest-1.7.0/src/gtest_main.o mdct/mdct_impl.o -o atracdenc_ut
- ./atracdenc_ut
diff --git a/src/mdct/Makefile b/src/mdct/Makefile
deleted file mode 100644
index cffd39d..0000000
--- a/src/mdct/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-all: lib
-
-lib:
- gcc -O2 -c vorbis_impl/mdct.c -o mdct_impl.o
-
-test: lib
- g++ -std=c++11 mdct_ut.cpp -I ../../3rd/gtest-1.7.0/include/ ../../3rd/gtest-1.7.0/src/gtest-all.o ../../3rd/gtest-1.7.0/src/gtest_main.o ./mdct_impl.o -o mdct_ut
- ./mdct_ut
-
-clean:
- rm ./mdct_ut
- rm ./mdct_impl.o