diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T11·20+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T11·20+0100 |
commit | ec1738589a3aa1dd59e476de09ae2721d51b3e6e (patch) | |
tree | 12ce1195b2eee732487a4e89519c4cffb086f8eb /dist.mk | |
parent | 35107038f7c726f5ef8d7ab014ad45c73970e65d (diff) |
Make variable names more regular
Diffstat (limited to 'dist.mk')
-rw-r--r-- | dist.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dist.mk b/dist.mk index cd11463e8a68..0ce4377ae4af 100644 --- a/dist.mk +++ b/dist.mk @@ -1,15 +1,15 @@ ifdef PACKAGE_NAME -dist_name = $(PACKAGE_NAME)-$(PACKAGE_VERSION) +dist-name = $(PACKAGE_NAME)-$(PACKAGE_VERSION) -dist_files := +dist-files := -dist: $(dist_name).tar.bz2 +dist: $(dist-name).tar.bz2 -$(dist_name).tar.bz2: $(dist_files) - $(suppress) tar cvfj $@ $(dist_files) --transform 's,^,$(dist_name)/,' +$(dist-name).tar.bz2: $(dist-files) + $(suppress) tar cvfj $@ $(dist-files) --transform 's,^,$(dist-name)/,' -clean_files += $(dist_name).tar.bz2 +clean-files += $(dist-name).tar.bz2 print-top-help += echo " dist: Generate a source distribution"; |