blob: b0715a74dfb4a87981455492ecb62007dafdcd37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
all: latexpand.zip
README: latexpand
./latexpand --help > README
.PHONY: latexpand.zip
latexpand.zip: README
-$(RM) $@
@echo "latexpand version $$(git rev-parse HEAD).\n\
Commited on $$(git show HEAD --pretty=format:'%cd')." > version.txt
zip $@ README version.txt $$(git ls-files | grep -v '\.gitignore')
|