Add tagfile creation commands for etags and ctags to Makefile.

* TODO We should probably not use a Makefile...but it's so handy.
testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-20 03:05:41 +00:00
parent 691d0163d4
commit 205d5394c7
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -41,6 +41,7 @@ nosetests.xml
# tags
TAGS
tags
# notes
*.org

View File

@ -1,4 +1,10 @@
ctags:
ctags -R *.py
etags:
find . -name "*.py" -print | xargs etags
cleanup-src:
cd src && \
rm -f \#*\# && \