"make tags": remove -t option of ctags

The option was kept for backward compatibility, but it was completly removed
recently. Patch written by Stéphane Wirtel.
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 643424c..2101e70 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1563,8 +1563,8 @@
 # Create a tags file for vi
 tags::
 	cd $(srcdir); \
-	ctags -w -t Include/*.h; \
-	for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
+	ctags -w Include/*.h; \
+	for i in $(SRCDIRS); do ctags -w -a $$i/*.[ch]; \
 	done; \
 	sort -o tags tags