release v0.26

Remove the rpm spec file from git as it is autogenerated.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
diff --git a/Makefile b/Makefile
index 3b313d7..68437ab 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION_STRING = "0.25"
+VERSION_STRING = "0.26"
 
 TARGETS	= cyclictest signaltest classic_pi pi_stress
 FLAGS	= -Wall -Wno-nonnull -O2
@@ -21,7 +21,7 @@
 pi_stress:  src/pi_tests/pi_stress.c
 	$(CC) $(FLAGS) -D_GNU_SOURCE -D VERSION_STRING=\"$(VERSION_STRING)\" $^ -o $@ $(LIBS)
 
-CLEANUP = $(TARGETS) *.o .depend *.*~ ChangeLog *.orig *.rej
+CLEANUP = $(TARGETS) *.o .depend *.*~ ChangeLog *.orig *.rej rt-tests.spec
 
 clean:
 	for F in $(CLEANUP); do find -type f -iname $$F | xargs rm -f; done
diff --git a/rt-tests.spec b/rt-tests.spec
deleted file mode 100644
index c6a9057..0000000
--- a/rt-tests.spec
+++ /dev/null
@@ -1,45 +0,0 @@
-Summary: Programs that test various rt-features
-Name: rt-tests
-Version: 0.22
-Release: 1
-License: GPLv2
-Group: Development/Tools
-URL: git://git.kernel.org/pub/scm/linux/kernel/git/tglx/rt-tests.git
-Source0: %{name}-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Obsoletes: cyclictest signaltest pi_tests
-
-%description
-A set of programs that test and measure various components of "realtime"
-kernel behavior, such as timer latency, signal latency and the functioning
-of priority-inheritance mutexes.
-
-%prep
-%setup -qn rt-tests
-
-%build
-make
-
-%install
-rm -rf $RPM_BUILD_ROOT
-mkdir -p $RPM_BUILD_ROOT/usr/bin
-mkdir -p $RPM_BUILD_ROOT/usr/share/man/man8
-make DESTDIR=$RPM_BUILD_ROOT/usr install
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%files
-%defattr(-,root,root,-)
-/usr/bin/classic_pi
-/usr/bin/cyclictest
-/usr/bin/pi_stress
-/usr/bin/signaltest
-%doc
-/usr/share/man/man8/cyclictest.8.gz
-/usr/share/man/man8/pi_stress.8.gz
-
-%changelog
-* Thu Jan 03 2008 Clark Williams <williams@redhat.com> - 0.18-1
-- Initial build.
-