New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Makefile in branches/TAM_V3_0/CONFIG/ORCA2_TAM – NEMO

source: branches/TAM_V3_0/CONFIG/ORCA2_TAM/Makefile @ 1888

Last change on this file since 1888 was 1888, checked in by rblod, 14 years ago

Add a sample configuration for TAM

File size: 1.4 KB
Line 
1#---------------------------------------------------------------------
2#- Creation des elements relatifs a ORCA :
3#-      ORCA  (lib, executable : opa)
4#---------------------------------------------------------------------
5SHELL = /bin/sh
6#---------------------------------------------------------------------
7LIBDIR = ../../../../lib
8BINDIR = ../../../../bin
9MODDIR = $(LIBDIR)
10#---------------------------------------------------------------------
11#-
12#-
13#- $Id: AA_make.gdef 948 2010-03-18 12:51:45Z mafoipsl $
14#-
15#- Validate the correlation between the target and the environment
16#-
17UTIL_DIR = ../../util
18WW_h_t = $(shell cat $(UTIL_DIR)/.host_target)
19WW_h_w = $(shell $(UTIL_DIR)/w_i_h)
20WW_t_e = $(shell $(UTIL_DIR)/w_i_e $(WW_h_t) $(WW_h_w))
21ifeq "$(WW_t_e)" "NO"
22 $(error )
23endif
24#-
25#- Global definitions for Intel compiler (ifort) at LSCE
26M_K = gmake
27P_C = cpp
28P_O = -P -C $(P_P)
29F_C = ifort -c -cpp
30F_D =
31F_P = -i4 -r8
32F_O = -O $(F_D) $(F_P) -I$(MODDIR) -module $(MODDIR)
33F_L = ifort
34M_M = 0
35L_X = 0
36L_O = -Vaxlib
37A_C = ar -r
38A_G = ar -x
39C_C = cc -c
40C_O =
41C_L = cc
42#-
43NCDF_INC = /usr/local/pub/netcdf/4.0.1-ifort/include
44NCDF_LIB = -L/usr/local/pub/netcdf/4.0.1-ifort/lib -lnetcdf
45#-
46RM      = rm -f
47STRIP   = strip
48SIZE    = size
49# $Header$
50all: ioipsl opa
51
52ioipsl:
53   (cd ../../modeles/IOIPSL/src; $(M_K) ;)
54
55
56opa:
57   (cd ../../modeles/NEMO/WORK;  $(M_K) ;)
58
59
60clean:
61   (cd ../../modeles/NEMO/WORK;  $(M_K) clean ;)
Note: See TracBrowser for help on using the repository browser.