On really fast machines some of the .o files aren't being added to
libray.a because they are generated so fast that make(1) thinks the
library is up-to-date.  Marvel at the horrific hack below.

--- libray/Makefile.orig	1992-02-10 03:03:05 UTC
+++ libray/Makefile
@@ -12,6 +12,8 @@ default:
 	for i in $(STUFF); do \
 		(cd $$i && $(MAKE)); \
 	done
+	rm -f libray.a
+	ar cur libray.a `find . -name '*.o'`
 
 #
 # Have to keep clean/depend separete so
