-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
63 lines (50 loc) · 1.4 KB
/
Makefile
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
61
62
63
#------------------------------------------------------------------------------
# Harvard University Atmospheric Chemistry Modeling Group !
#------------------------------------------------------------------------------
#BOP
#
# !MODULE: Makefile (main-level)
#
# !DESCRIPTION: Makefile for the NetCDF Utilities.
#\\
#\\
# !REMARKS:
# To build the program, call "make" with the following syntax:
#
# make TARGET [ OPTIONAL-FLAGS ]
#
# To display a complete list of options, type "make help".
#
# !REVISION HISTORY:
# 03 Aug 2009 - R. Yantosca - Initial version
#EOP
#------------------------------------------------------------------------------
#BOC
#==============================================================================
# Initialization
#==============================================================================
# Define variables
SHELL = /bin/sh
DIR = Code
#==============================================================================
# Makefile targets
#==============================================================================
.PHONY: all lib check clean realclean doc docclean help
all:
$(MAKE) -C $(DIR) all
chmod +x bin/*.x
lib:
$(MAKE) -C $(DIR) lib
check:
$(MAKE) -C $(DIR) check
clean:
$(MAKE) -C $(DIR) clean
realclean:
$(MAKE) -C $(DIR) realclean
doc:
$(MAKE) -C $(DIR) doc
docclean:
$(MAKE) -C $(DIR) docclean
help:
$(MAKE) -C $(DIR) help
#EOC