1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #
- # StarPU
- # Copyright (C) INRIA 2008-2009 (see AUTHORS file)
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU Lesser General Public License as published by
- # the Free Software Foundation; either version 2.1 of the License, or (at
- # your option) any later version.
- #
- # This program is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- #
- # See the GNU Lesser General Public License in COPYING.LGPL for more details.
- #
- export PKG_CONFIG_PATH=@STARPUDIR@
- LIBS+=$$(pkg-config --libs libstarpu)
- CFLAGS+=$$(pkg-config --cflags libstarpu)
- ifeq (@USE_CUDA@,yes)
- EXTRADEP += ../cuda/spmv_cuda.cubin
- endif
- all: $(EXTRADEP) dw_spmv dw_block_spmv
- make -C matrix-market
- ../cuda/spmv_cuda.cubin:
- make -C ../cuda spmv_cuda.cubin
- dw_spmv.o: dw_spmv.c dw_spmv.h
- $(CC) $(CFLAGS) dw_spmv.c -c -o dw_spmv.o
- dw_spmv: dw_spmv.o
- $(CC) dw_spmv.o -o dw_spmv $(LDFLAGS) $(LIBS)
- dw_block_spmv: dw_block_spmv.o dw_block_spmv_kernels.o
- make -C matrix-market mm_to_bcsr.o
- make -C matrix-market mmio.o
- $(CC) dw_block_spmv.o dw_block_spmv_kernels.o matrix-market/mm_to_bcsr.o matrix-market/mmio.o -o dw_block_spmv $(LDFLAGS) $(LIBS)
- clean:
- @make -C matrix-market clean
- @rm -f *.o *.d *.gcno *.gcda
- @rm -f dw_spmv dw_block_spmv
|