aboutsummaryrefslogtreecommitdiffstats
path: root/src/mdct/Makefile
blob: cffd39da13188537b6856310bf47810b42de0b27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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