File: Makefile

package info (click to toggle)
fftw 2.1.5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,772 kB
  • sloc: ansic: 65,239; sh: 7,399; ml: 3,084; perl: 2,894; makefile: 380; fortran: 102
file content (12 lines) | stat: -rw-r--r-- 600 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
all:
	gcc -c test_sched.c -o test_sched.o
	gcc -I/usr/lib/mpich/include -I../tests -c fftw_mpi_test.c -o fftw_mpi_test.o
	gcc -I/usr/lib/mpich/include -I../tests -c rfftw_mpi_test.c -o rfftw_mpi_test.o
	gcc -I/usr/lib/mpich/include -c test_transpose_mpi.c -o test_transpose_mpi.o
	gcc -lfftw_mpi test_sched.o -o test_sched
	gcc -lfftw_mpi fftw_mpi_test.o ../tests/test_main.o -o fftw_mpi_test
	gcc -lrfftw_mpi rfftw_mpi_test.o ../tests/test_main.o -o rfftw_mpi_test
	gcc -lfftw_mpi test_transpose_mpi.o -o test_transpose_mpi

clean:
	rm *.o test_sched fftw_mpi_test rfftw_mpi_test test_transpose_mpi