From: jluehrs2 Date: Wed, 5 Sep 2007 23:18:32 +0000 (-0500) Subject: be more explicit about what gets in a dist tarball (this still isn't perfect for... X-Git-Tag: 0.03~1 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=f0acec999dfa3f56b39250667a0adae1f3454686;p=luairc.git be more explicit about what gets in a dist tarball (this still isn't perfect for documentation, but eh) --- diff --git a/Makefile b/Makefile index a850476..3ccde60 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,14 @@ dist : $(VERSION).tar.gz $(VERSION).tar.gz : $(MAIN_LUA) $(MOD_LUAS) $(TEST_LUAS) doc Makefile README TODO LICENSE @echo "Creating $(VERSION).tar.gz" @mkdir $(VERSION) - @cp -r src test doc Makefile README TODO LICENSE $(VERSION) + @mkdir $(VERSION)/src + @cp $(MAIN_LUA) $(VERSION)/src + @mkdir $(VERSION)/src/irc + @cp $(MOD_LUAS) $(VERSION)/src/irc + @mkdir $(VERSION)/test + @cp $(TEST_LUAS) $(VERSION)/test + @mkdir $(VERSION)/doc + @cp -r doc/* $(VERSION)/doc + @cp Makefile README TODO LICENSE $(VERSION) @tar czf $(VERSION).tar.gz $(VERSION) @rm -rf $(VERSION)