diff options
author | Clark Williams <williams@redhat.com> | 2009-07-22 13:16:14 -0500 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2009-07-22 13:16:14 -0500 |
commit | 6ed83bebe16cc2909c6b2c1639edc3869f25e906 (patch) | |
tree | 889b9de4aa343a866833dac7996676507f2131a6 /Makefile | |
parent | dec39f5e7c35e12206a32e914b65a0f4bd245579 (diff) | |
download | rteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.tar.gz rteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.tar.xz rteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.zip |
added help target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -19,7 +19,6 @@ realclean: clean install: python setup.py --dry-run install - tarfile: rm -rf tarball && mkdir -p tarball/rteval-$(VERSION) cp -r rteval tarball/rteval-$(VERSION) @@ -33,3 +32,15 @@ rpm: tarfile cp rteval.spec rpm/SPECS cp loadsource/* rpm/SOURCES rpmbuild -ba --define "_topdir $(HERE)/rpm" rpm/SPECS/rteval.spec + +help: + @echo "" + @echo "rteval Makefile targets:" + @echo "" + @echo " rpm: run rpmbuild" + @echo " tarfile: create the source tarball" + @echo " install: install rteval locally" + @echo " clean: cleanup generated files" + @echo " runit: do a short testrun locally (default)" + @echo " sysreport: do a short testrun and generate sysreport data" + @echo "" |