forked from manmeet3591/python_class
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (28 loc) · 674 Bytes
/
Makefile
File metadata and controls
35 lines (28 loc) · 674 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
35
all : develop
test : FORCE
cd ilamb/test; python -c "import ILAMB; print ILAMB.__version__"
develop : install
# NOTE: need to cd to ilamb dir first before setup because
# the Makefile to build and install in the virtualenv is
# different from the distibution Makefile.
install : FORCE
cd ilamb; 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 ilamb/*.egg-info
-rm -rf ilamb/build
#
# FORCE - Null rule to force things to happen.
#
FORCE :