diff options
author | Waylan Limberg <waylan@gmail.com> | 2014-08-05 21:08:02 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2014-08-05 21:08:02 -0400 |
commit | 44cf8ce39936d7c045c58c550ad7cd21f9d59760 (patch) | |
tree | 14b1643b234344f7881c0428a4a64b28aa6c6ae4 /makefile | |
parent | 4f1a48495ebbc30ba04e924512c7adf20b81e34e (diff) | |
download | markdown-44cf8ce39936d7c045c58c550ad7cd21f9d59760.tar.gz markdown-44cf8ce39936d7c045c58c550ad7cd21f9d59760.tar.bz2 markdown-44cf8ce39936d7c045c58c550ad7cd21f9d59760.zip |
Makefiles require tabs - not spaces - for indentation. see #328
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,17 +7,17 @@ install: .PHONY : deploy deploy: python setup.py register - python setup.py sdist --manifest-only + python setup.py sdist --manifest-only python setup.py sdist --formats zip,gztar upload .PHONY : build build: - python setup.py sdist --manifest-only + python setup.py sdist --manifest-only python setup.py sdist --formats zip,gztar .PHONY : build-win build-win: - python setup.py sdist --manifest-only + python setup.py sdist --manifest-only python setup.py bdist_wininst .PHONY : docs |