source: CPL/oasis3/trunk/util/compile/frames/include/Top_makefile_libs.h @ 1677

Last change on this file since 1677 was 1677, checked in by aclsce, 12 years ago

Imported oasis3 (tag ipslcm5a) from cvs server to svn server (igcmg project).

File size: 874 bytes
Line 
1COUPLE = ${COUPLER}
2
3MPPFLAGS = $(MPPFLAG)
4
5LIBDIRS  = ${BLDLIBS}
6
7all:
8        @for DIR in $(LIBDIRS) ;\
9          do \
10            back=`pwd`; \
11            echo ' ' ; \
12            cd ../../lib/$$DIR ;\
13            $(MAKE) -f  Makefile $(MAKETARGET); status=$$? ; \
14            echo $$DIR ':' $$status >> $(BLDROOT)/lib.status ; \
15            if [ $$status != 0 ] ; then \
16              echo "Exit status from make was $$status" ; \
17            fi ; \
18            cd $$back ; \
19          done
20clean:
21        @for DIR in $(LIBDIRS) ;\
22          do \
23            back=`pwd`; \
24            echo ' ' ; \
25            cd ../../lib/$$DIR ;\
26            $(MAKE) -f  Makefile $(MAKETARGET); status=$$? ; \
27            echo $$DIR ':' $$status >> $(BLDROOT)/lib.status ; \
28            if [ $$status != 0 ] ; then \
29              echo "Exit status from make was $$status"  ; \
30            fi ; \
31            cd $$back ; \
32          done
33tar:
34        cd $(prefix) ; \
35        tar -cvf ${TARFILE} \
36        ${TARFILE_DIRS} \
37        util/compile
38EOF1
39
40#       util/COMP_libs.NodeName  \
Note: See TracBrowser for help on using the repository browser.