12345678910111213141516171819202122232425262728293031 |
- CC=gcc
- CFLAGS=-Wall -Werror -O0 -g
- OPT_CFLAGS=-Wall -Werror -O3
- EXTRA_OPT_CFLAGS= -funroll-loops -funsafe-math-optimizations
- LIBDIRS= -L/usr/lib64/atlas
- #INCDIR= -I/usr/include/atlas
- LIBS= -lsatlas
- all: compare tema2_blas tema2_neopt tema2_opt_m tema2_opt_f tema2_opt_f_extra
- tema2_blas: solver_blas.c main.c utils.h
- $(CC) $(CFLAGS) $^ $(LIBDIRS) $(INCDIR) $(LIBS) -o $@
- tema2_neopt: solver_neopt.c main.c utils.h
- $(CC) $(CFLAGS) $^ -o $@
- tema2_opt_m: solver_opt.c main.c utils.h
- $(CC) $(CFLAGS) $^ -o $@
- tema2_opt_f: solver_neopt.c main.c utils.h
- $(CC) $(OPT_CFLAGS) $^ -o $@
- tema2_opt_f_extra: solver_neopt.c main.c utils.h
- $(CC) $(OPT_CFLAGS) $(EXTRA_OPT_CFLAGS) $^ -o $@
- compare: compare.c utils.h
- $(CC) $(OPT_CFLAGS) $^ -lm -o $@
- clean:
- rm -rf compare tema2_blas tema2_neopt tema2_opt_m tema2_opt_f tema2_opt_f_extra
|