You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
299 B
9 lines
299 B
PROJECT = laymap |
|
VERSION = $(shell git describe) |
|
FILES = $(shell git ls-files usr/ README.md LICENSE.md CHANGELOG.md Makefile) |
|
|
|
dist: $(PROJECT)-$(VERSION).tar.xz |
|
|
|
$(PROJECT)-$(VERSION).tar.xz: $(FILES) |
|
rm -f $(PROJECT)-$(VERSION).tar.xz |
|
tar c -f - $(FILES) | xz -9 > $(PROJECT)-$(VERSION).tar.xz
|
|
|