diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2003-12-02 20:34:21 +0000 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-08-21 15:53:50 +0200 |
commit | 7c54ee4594c589b16c718d09a1cc6c5a9b94d45f (patch) | |
tree | 1ffcdf4339cf39d79da6652d24278835cc8d933a /Makefile | |
parent | a719970eb5a2edaed93781de543026a9cf735012 (diff) | |
download | miniircd-7c54ee4594c589b16c718d09a1cc6c5a9b94d45f.tar.gz miniircd-7c54ee4594c589b16c718d09a1cc6c5a9b94d45f.zip |
Add license, Makefile and some documentation
Added COPYING, README and Makefile files and clarified help text for some
switches.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..691e5ab --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +VERSION := $(shell sed -n -e '/version = /{s/version = "\(.*\)"/\1/;p;}' <miniircd) + +all: + echo "Nothing to do." + +dist: + mkdir miniircd-$(VERSION) + cp miniircd COPYING miniircd-$(VERSION) + tar cvzf miniircd-$(VERSION).tar.gz miniircd-$(VERSION) + rm -rf miniircd-$(VERSION) + +clean: + rm -rf miniircd-$(VERSION) *~ |