Declare debug channels as static variables so that we don't need to
generate an external .dbg.c file to define them.
diff --git a/Makefile.in b/Makefile.in
index c2e260c..64c7298 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -136,10 +136,10 @@
# Misc rules
TAGS etags:
- find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.dbg.c' -print | etags -
+ find $(TOPSRCDIR) -name '*.[ch]' -print | etags -
tags ctags:
- find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.dbg.c' -print | ctags --c-types=+px -L -
+ find $(TOPSRCDIR) -name '*.[ch]' -print | ctags --c-types=+px -L -
manpages htmlpages sgmlpages:
cd documentation && $(MAKE) $@