[PATCH] Juggle some includes, add cscope make target
diff --git a/Makefile b/Makefile
index 0acb1aa..16c8413 100644
--- a/Makefile
+++ b/Makefile
@@ -9,11 +9,14 @@
 	$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) -lpthread -laio -lm -lrt
 
 clean:
-	-rm -f *.o .depend $(PROGS)
+	-rm -f *.o .depend cscope.out $(PROGS)
 
 depend:
 	@$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend
 
+cscope:
+	@cscope -b
+
 INSTALL = install
 prefix = /usr/local
 bindir = $(prefix)/bin