summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2009-04-07 15:31:32 -0500
committerClark Williams <williams@redhat.com>2009-04-07 15:31:32 -0500
commit876c33c8a9dc3dc3249a9e0473a2a0d9663cda6b (patch)
tree458ec4a795242a1d467cb34fb842fe271df85961
parent4d284a272e662e8ad027c395f70ca6526cad095b (diff)
downloadrt-tests-876c33c8a9dc3dc3249a9e0473a2a0d9663cda6b.tar.gz
fixed release target in Makefile so rpms will buildv0.35
updated version string to 0.35 minor format tweak to make variables Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f69ce41..799b354 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
-VERSION_STRING = "0.34"
+VERSION_STRING = "0.35"
TARGETS = cyclictest signaltest classic_pi pi_stress
FLAGS = -Wall -Wno-nonnull -O2
LIBS = -lpthread -lrt
DESTDIR =
-prefix = /usr/local
-bindir = $(prefix)/bin
+prefix = /usr/local
+bindir = $(prefix)/bin
mandir = $(prefix)/share/man/man8
all: $(TARGETS)
@@ -46,6 +46,7 @@ release: clean changelog
cp -r Makefile COPYING ChangeLog src tmp/rt-tests
tar -C tmp -czf rt-tests-$(VERSION_STRING).tar.gz rt-tests
rm -f ChangeLog
+ cp rt-tests-$(VERSION_STRING).tar.gz releases
rt-tests.spec: Makefile rt-tests.spec-in
sed s/__VERSION__/$(VERSION_STRING)/ <$@-in >$@