Makefile 334 Bytes
Newer Older
1 2
include ../config.mk
include ../rules.mk
3

4
examples: fft fft_3D gemm gemm_4D
5 6 7
fft: ${bindir}/test/fft
${bindir}/test/fft: fft.o

8 9 10
fft_3D: ${bindir}/test/fft_3D
${bindir}/test/fft_3D: fft_3D.o

11 12 13 14 15 16
gemm_4D: ${bindir}/test/gemm_4D
${bindir}/test/gemm_4D: gemm_4D.o

gemm: ${bindir}/test/gemm
${bindir}/test/gemm: gemm.o

17
LIBS := -lctf $(LIBS)