Makefile 436 B

123456789101112131415161718192021
  1. #################################################
  2. #
  3. #################################################
  4. FC=gfortran
  5. CC=gcc
  6. FFLAGS=-fopenmp -O3
  7. all : timing compte
  8. timing :
  9. $(FC) $(FFLAGS) matmul-omp.f90 -o timingopenmp
  10. compte :
  11. $(CC) compteur-arg.c -o compte
  12. clean:
  13. rm -f timingopenmp compte *~
  14. allclean:
  15. rm -f timingopenmp compte *~ context_compteu* compteur.*.err compteur.*.out openmp-timing-*.??? done.context_comp*