source: lmdz_wrf/WRFV3/dyn_exp/Makefile @ 1

Last change on this file since 1 was 1, checked in by lfita, 10 years ago
  • -- --- Opening of the WRF+LMDZ coupling repository --- -- -

WRF: version v3.3
LMDZ: version v1818

More details in:

File size: 603 bytes
Line 
1#
2
3LN      =       ln -sf
4MAKE    =       make -i -r
5RM      =       rm -f
6
7
8MODULES =                               \
9        module_exp.o                    \
10        $(CASE_MODULE)
11
12# possible CASE_MODULE settings
13#       module_initialize_exp.o       
14
15OBJS    =                               \
16        solve_exp.o init_modules_exp.o
17
18LIBTARGET    =  dyn_exp
19TARGETDIR    =  ./
20$(LIBTARGET) :  $(MODULES) $(OBJS)
21                $(AR) $(ARFLAGS) ../main/$(LIBWRFLIB) $(MODULES) $(OBJS)
22
23include ../configure.wrf
24
25clean:
26        @ echo 'use the clean script'
27
28# DEPENDENCIES : only dependencies after this line (don't remove the word DEPENDENCIES)
29
30solve_exp.o:   module_exp.o
31
Note: See TracBrowser for help on using the repository browser.