-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
57 lines (46 loc) · 1.39 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
#------------------------------------------------------------------------------
# NcdfUtilities: by Harvard Atmospheric Chemistry Modeling Group !
# and NASA/GSFC, SIVO, Code 610.3 !
#------------------------------------------------------------------------------
#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/bash
DIR = Code
#==============================================================================
# Makefile targets
#==============================================================================
.PHONY: all lib check clean realclean doc docclean help
all:
$(MAKE) -C $(DIR) all
lib:
$(MAKE) -C $(DIR) lib
check:
$(MAKE) -C $(DIR) check
clean:
$(MAKE) -C $(DIR) clean
distclean:
$(MAKE) -C $(DIR) realclean
help:
$(MAKE) -C $(DIR) help
#EOC