source: CPL/oasis3-mct_5.0/lib/mct/examples/Makefile @ 6328

Last change on this file since 6328 was 6328, checked in by aclsce, 17 months ago

First import of oasis3-mct_5.0 (from oasis git server, branch OASIS3-MCT_5.0)

File size: 348 bytes
Line 
1
2SHELL = /bin/sh
3
4SUBDIRS = simple climate_concur1 climate_sequen1
5
6# TARGETS
7subdirs:
8        @for dir in $(SUBDIRS); do \
9          cd $$dir;                \
10          $(MAKE);                 \
11          cd ..;                   \
12        done
13
14clean:
15        @for dir in $(SUBDIRS); do \
16          cd $$dir;                \
17          $(MAKE) clean;           \
18          cd ..;                   \
19        done
20
Note: See TracBrowser for help on using the repository browser.