aboutsummaryrefslogtreecommitdiffstats
path: root/utils/convolvetest/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'utils/convolvetest/Makefile')
-rw-r--r--utils/convolvetest/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/convolvetest/Makefile b/utils/convolvetest/Makefile
new file mode 100644
index 0000000..0ce4cb1
--- /dev/null
+++ b/utils/convolvetest/Makefile
@@ -0,0 +1,16 @@
+all: main.o convolve_base.o convolve.o
+ gcc -g -Wall ./*.o -o convtest -losmocore
+
+clean:
+ rm -f ./*.o
+ rm -f ./convtest
+
+main.o: main.c
+ gcc -g -Wall -c main.c
+
+convolve_base.o: ../../Transceiver52M/common/convolve_base.c
+ gcc -std=c99 -c ../../Transceiver52M/common/convolve_base.c
+
+convolve.o: ../../Transceiver52M/x86/convolve.c
+ gcc -std=c99 -c ../../Transceiver52M/x86/convolve.c -I ../../Transceiver52M/common/ -msse3 -DHAVE_SSE3
+