summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2009-07-22 13:16:14 -0500
committerClark Williams <williams@redhat.com>2009-07-22 13:16:14 -0500
commit6ed83bebe16cc2909c6b2c1639edc3869f25e906 (patch)
tree889b9de4aa343a866833dac7996676507f2131a6 /Makefile
parentdec39f5e7c35e12206a32e914b65a0f4bd245579 (diff)
downloadrteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.tar.gz
rteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.tar.xz
rteval-6ed83bebe16cc2909c6b2c1639edc3869f25e906.zip
added help target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1630b87..b6bf2e6 100644
--- a/Makefile
+++ b/Makefile
@@ -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 ""