diff options
author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-08-08 21:30:37 -0500 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-08-08 21:30:37 -0500 |
commit | 6ce035303e686d976b98fa887231c0a23690aefb (patch) | |
tree | c5d188d3f7f3cc153eb8429f411181367ae0f4fe /Makefile | |
parent | 620fd9dc5666f11b322a7088a220f408636a77e3 (diff) |
fix dist target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -45,10 +45,9 @@ clean: # distribution archive dist: clean mkdir -p dwl-$(VERSION) - cp -R LICENSE* Makefile README.md generate-version.sh client.h\ - config.def.h config.mk protocols dwl.1 dwl.c util.c util.h\ + cp -R LICENSE* Makefile README.md client.h config.def.h\ + config.mk protocols dwl.1 dwl.c util.c util.h\ dwl-$(VERSION) - echo "echo $(VERSION)" > dwl-$(VERSION)/generate-version.sh tar -caf dwl-$(VERSION).tar.gz dwl-$(VERSION) rm -rf dwl-$(VERSION) |