diff options
author | Mike Gerwitz <mike@mikegerwitz.com> | 2013-05-15 22:59:51 -0400 |
---|---|---|
committer | Mike Gerwitz <mike@mikegerwitz.com> | 2013-05-15 22:59:51 -0400 |
commit | 7da0710cadf01f406917f5af49c8d8c596011632 (patch) | |
tree | 9f78487056fc269c94c79e38ffcf528ef5a5a333 | |
parent | c2588c572905d0b343f8a88c03184a66ac63de02 (diff) | |
download | thoughts-7da0710cadf01f406917f5af49c8d8c596011632.tar.gz thoughts-7da0710cadf01f406917f5af49c8d8c596011632.tar.bz2 thoughts-7da0710cadf01f406917f5af49c8d8c596011632.zip |
Added clean target and ignores for thoughts dirs
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Makefile | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -1,2 +1,5 @@ index.html rss.xml + +# thoughts +[0-9]*/ @@ -1,6 +1,9 @@ # builds thoughts # (well, not quite like that) +.PHONY: default clean + + default: repo2html \ -t "Mike Gerwitz's Thoughts and Ramblings" \ @@ -10,3 +13,6 @@ default: -R40 \ 'http://mikegerwitz.com/thoughts/' \ > index.html + +clean: + rm -rf [0-9]*/ |