aboutsummaryrefslogtreecommitdiffstats
path: root/utils/convolvetest/Makefile
blob: 0ce4cb1323f5f39b987b611d64f6b47c9d4c4ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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