summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 691e5ab..80f3896 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,13 @@
VERSION := $(shell sed -n -e '/version = /{s/version = "\(.*\)"/\1/;p;}' <miniircd)
+DISTFILES = miniircd COPYING README
+
all:
echo "Nothing to do."
dist:
mkdir miniircd-$(VERSION)
- cp miniircd COPYING miniircd-$(VERSION)
+ cp $(DISTFILES) miniircd-$(VERSION)
tar cvzf miniircd-$(VERSION).tar.gz miniircd-$(VERSION)
rm -rf miniircd-$(VERSION)