diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-12 23:21:57 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-12 23:21:57 -0400 |
commit | a4f5abe860025c8f4120b3bfb7aea7e555692153 (patch) | |
tree | 852b5a0ff6936b940520b6b3124a3c538b8e4771 /Makefile | |
parent | b20ddba1d5652157bb432e0c826ea746dd81482e (diff) | |
download | fork-ledger-a4f5abe860025c8f4120b3bfb7aea7e555692153.tar.gz fork-ledger-a4f5abe860025c8f4120b3bfb7aea7e555692153.tar.bz2 fork-ledger-a4f5abe860025c8f4120b3bfb7aea7e555692153.zip |
Added a days-of-the-week report, under -w
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -85,12 +85,12 @@ include make.deps # These next rules are for my own use. README.html: README - (cd $(HOME)/src/muse && \ + (cd $(HOME)/Projects/muse && \ ./publish --html $(shell pwd)/README && \ mv README.html $(shell pwd)) ledger.texi: README - (cd $(HOME)/src/muse && \ + (cd $(HOME)/Projects/muse && \ ./publish --texi $(shell pwd)/README && \ cat README.texi | sed 's/README\.info/ledger.info/g' \ > $(shell pwd)/ledger.texi && \ @@ -101,7 +101,8 @@ VERSION = $(shell scripts/version) dist: rm -fr /tmp/ledger-$(VERSION) rsync -av --exclude=".*" --exclude="TAGS" --exclude="version" \ - --exclude="_darcs/" --exclude="ledger.dat" \ + --exclude="_darcs/" --exclude="ledger.dat" --exclude="CVS/" \ + --exclude="1.7/" --exclude="gmon.out" --exclude="prof.out" \ $(shell pwd)/ /tmp/ledger-$(VERSION) (cd /tmp/ledger-$(VERSION) && \ make fullclean && \ |