You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
214 B
Makefile

CC = gcc
LD = gcc
fftw_single: fftw_dct.c
$(CC) -W -Wall -DDCT_TEST_USE_SINGLE $< -o $@ -lfftw3f
fftw_double: fftw_dct.c
$(CC) -W -Wall $< -o $@ -lfftw3
clean:
rm -f fftw_single
rm -f fftw_double
rm -f *.o