source: LMDZ6/trunk/libf/phylmd/ecrad/drhook/Makefile @ 5040

Last change on this file since 5040 was 4773, checked in by idelkadi, 9 months ago
  • Update of Ecrad in LMDZ The same organization of the Ecrad offline version is retained in order to facilitate the updating of Ecrad in LMDZ and the comparison between online and offline results. version 1.6.1 of Ecrad (https://github.com/lguez/ecrad.git)
  • Implementation of the double call of Ecrad in LMDZ


File size: 313 bytes
Line 
1LIBDRHOOK = ../lib/libdrhook.a
2
3all: dummy
4
5# Dummy version of Dr Hook creates the YOMHOOK module but the DR_HOOK
6# routine does nothing
7dummy: $(LIBDRHOOK)
8
9$(LIBDRHOOK): yomhook_dummy.o
10        ar -r $(LIBDRHOOK) yomhook_dummy.o
11
12%.o: %.F90
13        $(FC) $(FCFLAGS) -c $< -o $@
14
15clean:
16        rm -f *.o $(LIBDRHOOK)
17
18.PHONY: dummy
Note: See TracBrowser for help on using the repository browser.