1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-18 07:08:27 +02:00

Split Makefile.lib into several *.mk files

This commit is contained in:
Eelco Dolstra 2013-11-25 09:50:35 +00:00
parent e9b6397d2f
commit f980755766
9 changed files with 243 additions and 203 deletions

10
mk/dist.mk Normal file
View file

@ -0,0 +1,10 @@
dist_name = $(PACKAGE_NAME)-$(PACKAGE_VERSION)
dist_files :=
dist: $(dist_name).tar.bz2
$(dist_name).tar.bz2: $(dist_files)
$(QUIET) tar cvfj $@ $(dist_files) --transform 's,^,$(dist_name)/,'
clean_files += $(dist_name).tar.bz2