forked from manmeet3591/python_class
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (28 loc) · 776 Bytes
/
Makefile
File metadata and controls
34 lines (28 loc) · 776 Bytes
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
all : develop
test : FORCE
python -m unittest discover --start-directory pyAverager/tests
develop : install
# NOTE: need to cd to pyAverager dir first before setup because
# the Makefile can't live in the same dir as pyAverager due to
# different SVN repos (CESM and CISL). The setup.py operates
# on relative paths so must be called from the pyAverager dir.
install : FORCE
cd pyAverager; python setup.py install
clean :
-rm -f *~ *.CKP *.ln *.BAK *.bak .*.bak \
core errs \
,* .emacs_* \
tags TAGS \
make.log MakeOut \
*.tmp tmp.txt
#
# clobber - Really clean up the directory.
#
clobber : clean
-rm -f .Makedepend *.o *.mod *.il *.pyc
-rm -rf pyAverager/*.egg-info
-rm -rf pyAverager/build
#
# FORCE - Null rule to force things to happen.
#
FORCE :