|
Last change
on this file since 1766 was
1766,
checked in by aslmd, 8 years ago
|
|
MESOSCALE (LES). fixed compilation of LES following recent changes.
|
|
File size:
1.6 KB
|
| Line | |
|---|
| 1 | # |
|---|
| 2 | |
|---|
| 3 | LN = ln -sf |
|---|
| 4 | MAKE = make -i -r |
|---|
| 5 | RM = rm -f |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | MODULES = \ |
|---|
| 9 | module_physics_addtendc.o \ |
|---|
| 10 | module_physics_init.o \ |
|---|
| 11 | variables_mod.o \ |
|---|
| 12 | update_inputs_physiq_mod.o \ |
|---|
| 13 | update_outputs_physiq_mod.o \ |
|---|
| 14 | iniphysiq_mod.o \ |
|---|
| 15 | callphysiq_mod.o \ |
|---|
| 16 | module_lmd_driver.o |
|---|
| 17 | |
|---|
| 18 | OBJS = |
|---|
| 19 | |
|---|
| 20 | NMM_MODULES = |
|---|
| 21 | |
|---|
| 22 | LIBTARGET = physics |
|---|
| 23 | TARGETDIR = ./ |
|---|
| 24 | |
|---|
| 25 | $(LIBTARGET) : |
|---|
| 26 | if [ $(WRF_NMM_CORE) -eq 1 ] ; then \ |
|---|
| 27 | $(MAKE) nmm_contrib ; \ |
|---|
| 28 | $(AR) $(ARFLAGS) ../main/$(LIBWRFLIB) $(MODULES) $(OBJS) $(NMM_OBJS) $(NMM_MODULES) ; \ |
|---|
| 29 | else \ |
|---|
| 30 | $(MAKE) non_nmm ; \ |
|---|
| 31 | $(AR) $(ARFLAGS) ../main/$(LIBWRFLIB) $(MODULES) $(OBJS) ; \ |
|---|
| 32 | fi |
|---|
| 33 | |
|---|
| 34 | include ../configure.wrf |
|---|
| 35 | |
|---|
| 36 | nmm_contrib : $(NMM_OBJS) $(NMM_MODULES) $(MODULES) $(OBJS) |
|---|
| 37 | |
|---|
| 38 | non_nmm : $(MODULES) $(OBJS) |
|---|
| 39 | |
|---|
| 40 | clean: |
|---|
| 41 | @ echo 'use the clean script' |
|---|
| 42 | |
|---|
| 43 | # DEPENDENCIES : only dependencies after this line (don't remove the word DEPENDENCIES) |
|---|
| 44 | |
|---|
| 45 | module_physics_addtendc.o: \ |
|---|
| 46 | ../frame/module_state_description.o \ |
|---|
| 47 | ../frame/module_configure.o |
|---|
| 48 | |
|---|
| 49 | module_physics_init.o : \ |
|---|
| 50 | ../frame/module_state_description.o \ |
|---|
| 51 | ../frame/module_configure.o \ |
|---|
| 52 | ../frame/module_wrf_error.o \ |
|---|
| 53 | ../frame/module_dm.o \ |
|---|
| 54 | ../share/module_model_constants.o |
|---|
| 55 | |
|---|
| 56 | module_lmd_driver.o: \ |
|---|
| 57 | ../frame/module_state_description.o \ |
|---|
| 58 | ../frame/module_wrf_error.o \ |
|---|
| 59 | ../frame/module_configure.o \ |
|---|
| 60 | ../share/module_model_constants.o \ |
|---|
| 61 | #../frame/module_wrf_error.o \ |
|---|
| 62 | #../share/module_model_constants.o |
|---|
| 63 | |
|---|
| 64 | # DO NOT DELETE |
|---|
Note: See
TracBrowser
for help on using the repository browser.