main
test-branch
| Line | |
|---|
| 1 | UCC = cc
|
|---|
| 2 | include ../config/make.def
|
|---|
| 3 |
|
|---|
| 4 | # Note that COMPILE is also defined in make.common and should
|
|---|
| 5 | # be the same. We can't include make.common because it has a lot
|
|---|
| 6 | # of other garbage.
|
|---|
| 7 | FCOMPILE = $(F77) -c $(F_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 | $(UCC) ${CONVERTFLAG} -o setparams setparams.c
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 | clean:
|
|---|
| 20 | -rm -f setparams setparams.h npbparams.h
|
|---|
| 21 | -rm -f *~ *.o
|
|---|
| 22 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.