Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Side by Side Diff: third_party/pyscss/Makefile

Issue 9111023: Pyscss is obsolete with Dart CSS complier; remove all pyscss code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove pyparsing from .gitignore Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/pyscss/MANIFEST.in ('k') | third_party/pyscss/README » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 MODULE=scss
2
3 clean:
4 sudo rm -rf build dist $(MODULE).egg-info/
5 find . -name "*.pyc" -delete
6
7 install: remove _install clean
8
9 register: _register clean
10
11 upload: _upload install _commit doc
12
13 _upload:
14 python setup.py sdist upload
15 _commit:
16 git add .
17 git add . -u
18 git commit
19 git push origin
20
21 _register:
22 python setup.py register
23
24 remove:
25 sudo pip uninstall $(MODULE)
26
27 _install:
28 sudo pip install -U .
29
30 test:
31 python $(MODULE)/tests/__init__.py
32
33 doc:
34 python setup.py build_sphinx --source-dir=docs/ --build-dir=docs/_build --all-files
35 python setup.py upload_sphinx --upload-dir=docs/_build/html
OLDNEW
« no previous file with comments | « third_party/pyscss/MANIFEST.in ('k') | third_party/pyscss/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698