source: CPL/oasis3-mct/branches/OASIS3-MCT_2.0_branch/lib/mct/Makefile @ 4775

Last change on this file since 4775 was 4775, checked in by aclsce, 5 years ago
  • Imported oasis3-mct from Cerfacs svn server (not suppotred anymore).

The version has been extracted from https://oasis3mct.cerfacs.fr/svn/branches/OASIS3-MCT_2.0_branch/oasis3-mct@1818

File size: 588 bytes
Line 
1
2SHELL = /bin/sh
3
4include Makefile.conf
5
6SUBDIRS = $(MPISERPATH) $(MPEUPATH) $(MCTPATH)
7
8# TARGETS
9subdirs:
10        @set -e; for dir in $(SUBDIRS); do \
11          cd $$dir;                \
12          $(MAKE);                 \
13          cd $(abs_top_builddir)\
14        done
15
16clean:
17        @set -e; for dir in $(SUBDIRS); do \
18          cd $$dir;                \
19          $(MAKE) clean;           \
20          cd $(abs_top_builddir)\
21        done
22
23install: subdirs
24        @set -e; for dir in $(SUBDIRS); do \
25          cd $$dir;                \
26          $(MAKE) install;         \
27          cd $(abs_top_builddir)\
28        done
29
30examples: subdirs
31        @cd $(EXAMPLEPATH) && $(MAKE)
32
33
Note: See TracBrowser for help on using the repository browser.