Index: /trunk/archive/pslib/Makefile
===================================================================
--- /trunk/archive/pslib/Makefile	(revision 158)
+++ /trunk/archive/pslib/Makefile	(revision 158)
@@ -0,0 +1,21 @@
+# $Id: Makefile,v 1.1 2004-03-10 00:04:12 price Exp $
+SHELL = /bin/sh
+DIRS = include
+
+all: tags
+
+
+.PHONY : tags
+tags:
+	etags `find . \( -name \*.[ch] -o -name \*.cpp \) -print`
+
+clean:
+	$(RM) *~ core* TAGS
+	@for f in $(DIRS); do \
+		if [ ! -d $$f ]; then \
+			echo No such directory: $$f >&2; \
+		else \
+			(cd $$f; $(MAKE) clean); \
+		fi \
+	done
+
