source: CIVL/mods/dev.civl.com/examples/omp/nas-dc/sys/Makefile@ cb4d4f4

main test-branch
Last change on this file since cb4d4f4 was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5664 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 557 bytes
Line 
1UCC = cc
2include ../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.
7FCOMPILE = $(F77) -c $(F_INC) $(FFLAGS)
8
9all: 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
15setparams: setparams.c ../config/make.def
16 $(UCC) ${CONVERTFLAG} -o setparams setparams.c
17
18
19clean:
20 -rm -f setparams setparams.h npbparams.h
21 -rm -f *~ *.o
22
Note: See TracBrowser for help on using the repository browser.