blob: 2f8651ddd0616e1fb808847001e4eae8348aae6d (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: latexpand.zip
README:
./latexpand --help > README
.PHONY: latexpand.zip
latexpand.zip: README
-$(RM) $@
@echo "latexpand version $$(git rev-parse HEAD)" > version.txt
zip $@ README version.txt $$(git ls-files)
|