Makefile: More portable invocation of ctags/etags.
diff --git a/Makefile.in b/Makefile.in
index 7b3f8e0..923a33e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -132,10 +132,12 @@
 # Misc rules
 
 TAGS etags:
-	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | etags -
+	$(RM) TAGS
+	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs etags -a
 
 tags ctags:
-	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | ctags -
+	$(RM) tags
+	(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs ctags -a
 
 manpages htmlpages sgmlpages: dummy
 	@cd documentation && $(MAKE) $@