Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added our tweaked version of NAS benchmarks.
[simgrid.git] / examples / smpi / NAS / sys / Makefile
1 include ../config/make.def
2
3 # Note that COMPILE is also defined in make.common and should
4 # be the same. We can't include make.common because it has a lot
5 # of other garbage. LINK is not defined in make.common because
6 # ${MPI_LIB} needs to go at the end of the line. 
7 FCOMPILE = $(MPIF77) -c $(FMPI_INC) $(FFLAGS)
8
9 all: setparams 
10
11 # setparams creates an npbparam.h file for each benchmark 
12 # configuration. npbparams.h also contains info about how a benchmark
13 # was compiled and linked
14
15 setparams: setparams.c ../config/make.def
16         $(CC) ${CONVERTFLAG} -o setparams setparams.c
17
18
19 clean: 
20         -rm -f setparams setparams.h npbparams.h
21         -rm -f *~ *.o
22