nix-gh/dist.mk

17 lines
329 B
Makefile
Raw Normal View History

ifdef PACKAGE_NAME
2014-02-01 12:20:06 +01:00
dist-name = $(PACKAGE_NAME)-$(PACKAGE_VERSION)
2014-02-01 12:20:06 +01:00
dist-files :=
2014-02-01 12:20:06 +01:00
dist: $(dist-name).tar.bz2
2014-02-01 12:20:06 +01:00
$(dist-name).tar.bz2: $(dist-files)
$(suppress) tar cvfj $@ $(dist-files) --transform 's,^,$(dist-name)/,'
2014-02-01 12:20:06 +01:00
clean-files += $(dist-name).tar.bz2
print-top-help += echo " dist: Generate a source distribution";
endif