-
Notifications
You must be signed in to change notification settings - Fork 9
/
Make.mm
60 lines (52 loc) · 2.16 KB
/
Make.mm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
##
## Copyright (C), 2003,
## Steve Quenette, 110 Victoria Street, Melbourne, Victoria, 3053, Australia.
## Californian Institute of Technology, 1200 East California Boulevard, Pasadena, California, 91125, USA.
## University of Texas, 1 University Station, Austin, Texas, 78712, USA.
##
## Authors:
## Stevan M. Quenette, Senior Software Engineer, VPAC. ([email protected])
## Stevan M. Quenette, Visitor in Geophysics, Caltech.
## Luc Lavier, Research Scientist, The University of Texas. ([email protected])
## Luc Lavier, Research Scientist, Caltech.
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by the
## Free Software Foundation; either version 2, or (at your option) any
## later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
## $Id: Make.mm 1315 2004-04-30 11:31:29Z PatrickSunter $
##
##~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include Makefile.def
PROJECT = Snac
PACKAGE = Snac
PASSTOTALFILE = "${BLD_TMPDIR}/.passtotal"
FAILTOTALFILE = "${BLD_TMPDIR}/.failtotal"
RECURSE_DIRS = ${def_proj} ${def_sub}
all:
BLD_ACTION="all" $(MM) recurse
PROJ_CLEAN =
clean::
BLD_ACTION="clean" $(MM) recurse
tidy::
BLD_ACTION="tidy" $(MM) recurse
check::
BLD_ACTION="check" $(MM) recurse
@if test ${MAKELEVEL} = 0; then \
echo "--------------------------------------------"; \
echo "Summary of results:"; \
echo "Passes = `cat ${PASSTOTALFILE}`"; \
echo "Fails = `cat ${FAILTOTALFILE}`"; \
rm -f ${PASSTOTALFILE} ${FAILTOTALFILE}; \
fi;