--- Makefile.orig	Tue May 18 15:46:55 2004
+++ Makefile	Thu Jul  1 09:03:32 2004
@@ -1,16 +1,15 @@
 #   top-level Makefile for the NAB suite of programs
 
+all:	compiler test
 compiler:
 	-mkdir bin lib include
-	(cd ucpp-1.3; make install )
-	(cd byacc; make install )
 	(cd cifparse; make install )
 	(cd src; make install )
 	(cd nss; make install )
 	(cd tleap; make install )
-	@echo
-	@echo "completed installation of NAB version 4"
-	@echo
+#	@echo
+#	@echo "completed installation of NAB version 4"
+#	@echo
 
 #   note:  "make test" needs to follow "make", since it is very hard to
 #          tell if the compiler is completely "made" or not.
@@ -19,18 +18,15 @@
 	(cd nss; make test )
 
 clean:
-	(cd ucpp-1.3; make clean )
-	(cd byacc; make clean )
 	(cd cifparse; make clean )
 	(cd src; make clean )
 	(cd nss; make clean )
 	(cd tleap; make clean )
-	
+
 uninstall:
-	(cd ucpp-1.3; make uninstall )
 	(cd cifparse; make uninstall )
 	(cd src; make uninstall )
 	(cd nss; make uninstall )
 	(cd tleap; make uninstall )
 	-/bin/rm config.h
-	
+
