-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
51 lines (43 loc) · 1.3 KB
/
Makefile
File metadata and controls
51 lines (43 loc) · 1.3 KB
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
develop :
rm -rf eazytext-env
virtualenv eazytext-env --no-site-packages
bash -c "source eazytext-env/bin/activate ; python ./setup.py develop"
test :
cd eazytext/test; teststd.py;
cd eazytext/test; testmixchar.py;
cd eazytext/test; testmixline.py;
cd eazytext/test; bash testcmd.sh;
bdist_egg : copy
python ./setup.py bdist_egg
sdist : copy
python ./setup.py sdist
upload : copy
python ./setup.py sdist register -r http://www.python.org/pypi upload -r http://www.python.org/pypi --show-response
copy :
cp CHANGELOG docs/CHANGELOG
cp LICENSE docs/LICENSE
cp README docs/README
cp ROADMAP docs/ROADMAP
vimplugin :
rm -rf ./vim-plugin/vim-eazytext.tar.gz
cd ./vim-plugin; tar cvfz ./vim-eazytext.tar.gz *
cleanall : clean
rm -rf eazytext-env
clean :
rm -rf distribute-0.6.10.tar.gz
rm -rf build;
rm -rf dist;
rm -rf docs/CHANGELOG docs/LICENSE docs/README docs/ROADMAP
rm -rf zwiki.egg-info;
rm -rf zwiki_zeta.egg-info/;
rm -rf eazytext.egg-info;
rm -rf eazytext.egg-info/;
rm -rf `find ./ -name parseetxtab.py`;
rm -rf `find ./ -name "*.pyc"`;
rm -rf `find ./ -name "yacctab.py"`;
rm -rf `find ./ -name "lextab.py"`;
rm -rf eazytext/test/stdfiles/*.etx.py;
rm -rf eazytext/test/stdfiles/*.html;
rm -rf eazytext/test/mixchar.*;
rm -rf eazytext/test/mixline.*;
rm -rf eazytext/test/out.html;