diff --git a/GNUmakefile.in b/GNUmakefile.in
index a31f2786d062a539e919a536ee345ee80c09af83..1ee1d96b7a4c547a529dfe21f7e38e0f177d3d1d 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -91,8 +91,17 @@ tipserv-install:
 	@$(MAKE) -C capture tipserv-install
 	@$(MAKE) -C tbsetup tipserv-install
 
-client-install:
+client-mkdirs:
+	-mkdir -p $(DESTDIR)$(CLIENT_BINDIR)
+
+client:
 	@$(MAKE) -C lib/libtb client
+	@$(MAKE) -C event client
+	@$(MAKE) -C os client
+	@$(MAKE) -C sensors client
+	@$(MAKE) -C tmcd client
+
+client-install: client client-mkdirs
 	@$(MAKE) -C event client-install
 	@$(MAKE) -C os client-install
 	@$(MAKE) -C sensors client-install
diff --git a/configure b/configure
index 74cd298755c55b65138422b687cf3d1687419852..74eb4570183072c376f7e3e4cd34f44174fc1a5d 100755
--- a/configure
+++ b/configure
@@ -1462,8 +1462,9 @@ outfiles="$outfiles Makeconf GNUmakefile \
 	tmcd/freebsd/supfile tmcd/freebsd/sethostname \
 	tmcd/linux/GNUmakefile tmcd/linux/supfile tmcd/linux/pump.conf \
 	tmcd/linux/sethostname tmcd/linux/sethostname.dhclient \
-	tmcd/freebsd5/GNUmakefile tmcd/openbsd/GNUmakefile \
-	tmcd/ron/GNUmakefile tmcd/plab/GNUmakefile \
+	tmcd/linux9/GNUmakefile tmcd/linux9/supfile \
+	tmcd/freebsd5/GNUmakefile tmcd/freebsd5/supfile \
+	tmcd/openbsd/GNUmakefile tmcd/ron/GNUmakefile tmcd/plab/GNUmakefile \
 	utils/GNUmakefile utils/vlandiff utils/vlansync utils/delay_config \
 	utils/sshtb utils/create_image utils/node_admin utils/webcreateimage \
 	utils/firstuser utils/export_tables utils/eventping \
diff --git a/configure.in b/configure.in
index 5ed407f68134434e8b5ba4348926f75d25dd12bc..ad134a9588b41802094d4a55e16014734e831756 100755
--- a/configure.in
+++ b/configure.in
@@ -441,7 +441,7 @@ outfiles="$outfiles Makeconf GNUmakefile \
 	os/GNUmakefile os/split-image.sh os/imagezip/GNUmakefile \
 	os/imagezip/ffs/GNUmakefile os/imagezip/extfs/GNUmakefile \
 	os/frisbee.redux/GNUmakefile os/growdisk/GNUmakefile \
-        os/syncd/GNUmakefile  os/dijkstra/GNUmakefile \
+        os/syncd/GNUmakefile os/dijkstra/GNUmakefile \
 	os/genhostsfile/GNUmakefile \
 	pxe/GNUmakefile pxe/bootinfo.restart \
 	security/GNUmakefile security/paperbag security/lastlog_daemon \
@@ -507,8 +507,9 @@ outfiles="$outfiles Makeconf GNUmakefile \
 	tmcd/freebsd/supfile tmcd/freebsd/sethostname \
 	tmcd/linux/GNUmakefile tmcd/linux/supfile tmcd/linux/pump.conf \
 	tmcd/linux/sethostname tmcd/linux/sethostname.dhclient \
-	tmcd/freebsd5/GNUmakefile tmcd/openbsd/GNUmakefile \
-	tmcd/ron/GNUmakefile tmcd/plab/GNUmakefile \
+	tmcd/linux9/GNUmakefile tmcd/linux9/supfile \
+	tmcd/freebsd5/GNUmakefile tmcd/freebsd5/supfile \
+	tmcd/openbsd/GNUmakefile tmcd/ron/GNUmakefile tmcd/plab/GNUmakefile \
 	utils/GNUmakefile utils/vlandiff utils/vlansync utils/delay_config \
 	utils/sshtb utils/create_image utils/node_admin utils/webcreateimage \
 	utils/firstuser utils/export_tables utils/eventping \
diff --git a/event/GNUmakefile.in b/event/GNUmakefile.in
index b65dec05b6c2a754751dbd42c9d24beaafa8dcec..92615e76d98c205b2440a46c8dceb3ae63eeb8ae 100644
--- a/event/GNUmakefile.in
+++ b/event/GNUmakefile.in
@@ -36,16 +36,8 @@ install:
 	@$(MAKE) -C stated install
 	@$(MAKE) -C linktest install
 
-client-install: lib/all.MAKE
-ifeq ($(SYSTEM),FreeBSD)
-	@$(MAKE) -C delay-agent client-install
-endif
-	@$(MAKE) -C link-agent client-install
-	@$(MAKE) -C tbgen client-install
-	@$(MAKE) -C program-agent client-install
-	@$(MAKE) -C trafgen client-install
-	@$(MAKE) -C proxy client-install
-	@$(MAKE) -C linktest client-install
+client:		client-subdirs
+client-install: client client-install-subdirs
 
 control-install: 
 	@$(MAKE) -C lib control-install
diff --git a/event/delay-agent/GNUmakefile.in b/event/delay-agent/GNUmakefile.in
index c76be05581d613c1d6c82e7e19c14d23808cdb7f..270f4e9f6d45e3081bbaf051378744153ebf32f9 100644
--- a/event/delay-agent/GNUmakefile.in
+++ b/event/delay-agent/GNUmakefile.in
@@ -32,7 +32,8 @@ delay-agent:	$(OBJS)
 
 $(OBJS):	main.h ../lib/libevent.a
 
-client-install: delay-agent
+client: delay-agent
+client-install: client
 	$(INSTALL_PROGRAM) -s delay-agent $(DESTDIR)$(CLIENT_BINDIR)/delay-agent
 
 clean:
diff --git a/event/example/GNUmakefile.in b/event/example/GNUmakefile.in
index b705dc4a1d29f9676b4ce28114f71349feaf8e8d..f692c7ddd94d8ce82b308afa30930bceea4ab65d 100644
--- a/event/example/GNUmakefile.in
+++ b/event/example/GNUmakefile.in
@@ -34,5 +34,9 @@ $(PROGRAMS):	../lib/libevent.a ../lib/event.h
 
 install:	$(addprefix $(INSTALL_SBINDIR)/, eventdebug.pl)
 
+# not a client thing
+client:
+client-install: client
+
 clean:
 	/bin/rm -f *.o $(PROGRAMS)
diff --git a/event/lib/GNUmakefile.in b/event/lib/GNUmakefile.in
index b684005332788e2150e79106807225beb9d7bf15..f80760e3a13293397b8b73b3f262555aeddefa70 100644
--- a/event/lib/GNUmakefile.in
+++ b/event/lib/GNUmakefile.in
@@ -12,10 +12,13 @@ SUBDIR		= event/lib
 include $(OBJDIR)/Makeconf
 
 SYSTEM	       := $(shell uname -s)
-PROGRAMS	= libevent.a
+LIBS		= libevent.a
+SWIGLIBS        =
 ifneq ($(SYSTEM),Linux)
-PROGRAMS       += libevent_r.a event.so _tbevent.so
+LIBS           += libevent_r.a
+SWIGLIBS       += event.so _tbevent.so
 endif
+PROGRAMS	= $(LIBS) $(SWIGLIBS)
 
 all:		$(PROGRAMS)
 
@@ -31,9 +34,14 @@ CFLAGS_NOWARN += `elvin-config --cflags vin4c`
 ifeq ($(SYSTEM),Linux)
 PCORE  = -I/usr/lib/perl5/5.6.1/i386-linux/CORE
 else
+FBSDVERSION    := $(shell uname -v | sed -e 's/FreeBSD \([0-9]\).*/FreeBSD\1/')
+ifeq ($(FBSDVERSION),FreeBSD5)
+PCORE  = -I/usr/local/lib/perl5/5.6.1/mach/CORE
+else
 PCORE  = -I/usr/libdata/perl/5.00503/mach/CORE
 PYCORE = -I/usr/local/include/python2.3
 endif
+endif
 
 OBJS	= event.o util.o
 POBJS	= event_r.o util.o
@@ -102,14 +110,21 @@ install: $(addprefix $(INSTALL_LIBDIR)/, $(LIB_STUFF))
 
 control-install:	install
 
+#
+# Right now we don't bother with the dynamic libs since all of the existing
+# clients are statically linked.  Also, the dynamic libs include the SWIG stubs
+# and that stuff needs work to build on Linux and FBSD5.
+#
+client: $(LIBS)
+client-install: client # client-libinstall
+
 #
 # XXX Fix the python install location.
 #
-client-install:
+client-libinstall:
 	$(INSTALL_PROGRAM) $(SRCDIR)/event.pm $(DESTDIR)$(CLIENT_BINDIR)/event.pm
 	$(INSTALL_PROGRAM) event.so $(DESTDIR)$(CLIENT_BINDIR)/event.so
-	$(INSTALL_PROGRAM) $(SRCDIR)/tbevent.py \
-		$(DESTDIR)$(CLIENT_BINDIR)/tbevent.py
+	$(INSTALL_PROGRAM) $(SRCDIR)/tbevent.py $(DESTDIR)$(CLIENT_BINDIR)/tbevent.py
 	$(INSTALL_PROGRAM) _tbevent.so $(DESTDIR)$(CLIENT_BINDIR)/_tbevent.so
 
 clean:
diff --git a/event/link-agent/GNUmakefile.in b/event/link-agent/GNUmakefile.in
index 67af9f275480b7440e4d2e7671f39335945e9380..6ae9d48da629f9269fd25849170e8efeb4c6f992 100644
--- a/event/link-agent/GNUmakefile.in
+++ b/event/link-agent/GNUmakefile.in
@@ -42,9 +42,9 @@ $(PROGRAMS):	../lib/libevent.a ../lib/event.h
 
 install:
 
-client-install: link-agent
-	$(INSTALL_PROGRAM) link-agent \
-			$(DESTDIR)$(CLIENT_BINDIR)/link-agent
+client: $(PROGRAMS)
+client-install: client
+	$(INSTALL_PROGRAM) -s link-agent $(DESTDIR)$(CLIENT_BINDIR)/link-agent
 
 clean:
 	/bin/rm -f *.o $(PROGRAMS)
diff --git a/event/linktest/GNUmakefile.in b/event/linktest/GNUmakefile.in
index 908e1d768e64a6b0ad02dc0fc77c5574a7cb221b..d277f780de129fb6357f74a57f5c1ac56a9a1955 100644
--- a/event/linktest/GNUmakefile.in
+++ b/event/linktest/GNUmakefile.in
@@ -61,15 +61,15 @@ $(LIBTBDIR)/%.o:
 $(LIBEVENTDIR)/%.a:
 	@$(MAKE) -C $(LIBEVENTDIR) $(@F)
 
-binaries: $(LOCAL_BINDIR)/$(DAEMON) $(LOCAL_BINDIR)/$(LTEVENT) 
-
 $(LOCAL_BINDIR):
 	-mkdir -p $(LOCAL_BINDIR)
 
-$(LOCAL_BINDIR)/$(DAEMON):	$(LOCAL_BINDIR) $(DAEMON_OBJS) $(LIBTB_OBJS)
+binaries: $(LOCAL_BINDIR) $(LOCAL_BINDIR)/$(DAEMON) $(LOCAL_BINDIR)/$(LTEVENT) 
+
+$(LOCAL_BINDIR)/$(DAEMON):	$(DAEMON_OBJS) $(LIBTB_OBJS)
 	$(CC) $(LDFLAGS) $(DAEMON_OBJS) $(LIBTB_OBJS) $(LIBS) -o $@
 
-$(LOCAL_BINDIR)/$(LTEVENT):	$(LOCAL_BINDIR) $(LTEVENT_OBJS) $(LIBTB_OBJS)
+$(LOCAL_BINDIR)/$(LTEVENT):	$(LTEVENT_OBJS) $(LIBTB_OBJS)
 	$(CC) $(LDFLAGS) $(LTEVENT_OBJS) $(LIBTB_OBJS) $(LIBS) -o $@
 
 $(DAEMON_OBJS):	linktest.h ../lib/libevent.a ../lib/event.h
@@ -85,23 +85,17 @@ install:
 
 control-install:	install
 
-client-install: all
-	$(INSTALL_PROGRAM) -s $(LOCAL_BINDIR)/$(DAEMON) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(DAEMON)
-	$(INSTALL_PROGRAM) -s $(LOCAL_BINDIR)/$(LTEVENT) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(LTEVENT)
-	$(INSTALL_PROGRAM) $(SCRIPT) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT)
-	$(INSTALL_PROGRAM) $(SCRIPT_RUN) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_RUN)
-	$(INSTALL_PROGRAM) $(SRCDIR)/$(SCRIPT_TBCOMPAT) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_TBCOMPAT)
-	$(INSTALL_PROGRAM) $(NSTOIRDIR)/$(SCRIPT_NSTB_COMPAT) \
-			$(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_NSTB_COMPAT)
+client: all
+client-install: client
+	$(INSTALL_PROGRAM) -s $(LOCAL_BINDIR)/$(DAEMON) $(DESTDIR)$(CLIENT_BINDIR)/$(DAEMON)
+	$(INSTALL_PROGRAM) -s $(LOCAL_BINDIR)/$(LTEVENT) $(DESTDIR)$(CLIENT_BINDIR)/$(LTEVENT)
+	$(INSTALL_PROGRAM) $(SCRIPT) $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT)
+	$(INSTALL_PROGRAM) $(SCRIPT_RUN) $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_RUN)
+	$(INSTALL_PROGRAM) $(SRCDIR)/$(SCRIPT_TBCOMPAT) $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_TBCOMPAT)
+	$(INSTALL_PROGRAM) $(NSTOIRDIR)/$(SCRIPT_NSTB_COMPAT) $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT_NSTB_COMPAT)
 
 lt-install:
-	$(INSTALL_PROGRAM) $(SCRIPT) \
-            $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT)
+	$(INSTALL_PROGRAM) $(SCRIPT) $(DESTDIR)$(CLIENT_BINDIR)/$(SCRIPT)
 
 clean:
 	rm -f *.o $(TESTS)
diff --git a/event/nsetrafgen/GNUmakefile.in b/event/nsetrafgen/GNUmakefile.in
index 43d58bba509997d1050c33acb498e7fc34219ca5..4d1cb8da4d995596b50d98e48a79f75fa74e5d04 100644
--- a/event/nsetrafgen/GNUmakefile.in
+++ b/event/nsetrafgen/GNUmakefile.in
@@ -50,7 +50,14 @@ sup-install:
 	-mkdir -p $(INSTALL_SUPDIR)/usr/local/bin/
 	-cp $(INSTALL_NSE) $(INSTALL_SUPDIR)/usr/local/bin
 
-client-install:
+# XXX requires Shashi-magic right now
+tmpmsg:
+	@echo "WARNING: do 'make real-<target>' if you really mean it"
+client: tmpmsg
+client-install: client
+
+real-client: all
+real-client-install:
 	cp -p $(INSTALL_FILES) $(DESTDIR)$(CLIENT_BINDIR)
 	if [ -x $(INSTALL_NSE) ]; then \
 	    $(INSTALL) -m 755 -o root -g wheel -d $(DESTDIR)/usr/local/bin; \
diff --git a/event/program-agent/GNUmakefile.in b/event/program-agent/GNUmakefile.in
index 7f9ed4dfc16c9e33f5cc5f92612a6c27c90db8b0..9a67343a16af3d994706ea61c81757f1de18073c 100644
--- a/event/program-agent/GNUmakefile.in
+++ b/event/program-agent/GNUmakefile.in
@@ -42,9 +42,9 @@ $(PROGRAMS):	../lib/libevent.a ../lib/event.h
 
 install:
 
-client-install: program-agent
-	$(INSTALL_PROGRAM) -s program-agent \
-			$(DESTDIR)$(CLIENT_BINDIR)/program-agent
+client: $(PROGRAMS)
+client-install: client
+	$(INSTALL_PROGRAM) -s program-agent $(DESTDIR)$(CLIENT_BINDIR)/program-agent
 
 clean:
 	/bin/rm -f *.o $(PROGRAMS)
diff --git a/event/proxy/GNUmakefile.in b/event/proxy/GNUmakefile.in
index 22ffbd56dffed20c960f53c783b23ca8f9625d23..19bb310331e07d51b81822cf19cc6422df520bbc 100644
--- a/event/proxy/GNUmakefile.in
+++ b/event/proxy/GNUmakefile.in
@@ -77,7 +77,8 @@ proxytest:	proxytest.o $(LIBTBDIR)/log.o
 
 $(PROGRAMS):	../lib/libevent.a ../lib/event.h
 
-client-install: evproxy
+client: evproxy
+client-install: client
 	$(INSTALL_PROGRAM) -s evproxy $(DESTDIR)$(CLIENT_BINDIR)/evproxy
 
 clean:
diff --git a/event/sched/GNUmakefile.in b/event/sched/GNUmakefile.in
index ad386b270d99a352d1f24cd4d50f87f584f11031..c7a37c5d586a2ca209df13e609f68ce437728da1 100644
--- a/event/sched/GNUmakefile.in
+++ b/event/sched/GNUmakefile.in
@@ -1,6 +1,6 @@
 #
 # EMULAB-COPYRIGHT
-# Copyright (c) 2000-2002 University of Utah and the Flux Group.
+# Copyright (c) 2000-2002, 2004 University of Utah and the Flux Group.
 # All rights reserved.
 #
 
@@ -42,5 +42,9 @@ $(OBJS):	event-sched.h ../lib/libevent.a
 
 install:	$(addprefix $(INSTALL_SBINDIR)/, event-sched)
 
+# not a client thing
+client:
+client-install: client
+
 clean:
 	/bin/rm -f *.o event-sched
diff --git a/event/stated/GNUmakefile.in b/event/stated/GNUmakefile.in
index c77972a89af42a1a4207c09c0681388b819d67be..216bc9912cfe845bf1148ce94dba3a6ff524f3a2 100644
--- a/event/stated/GNUmakefile.in
+++ b/event/stated/GNUmakefile.in
@@ -1,6 +1,6 @@
 #
 # EMULAB-COPYRIGHT
-# Copyright (c) 2000-2003 University of Utah and the Flux Group.
+# Copyright (c) 2000-2004 University of Utah and the Flux Group.
 # All rights reserved.
 #
 
@@ -22,3 +22,7 @@ include $(TESTBED_SRCDIR)/GNUmakerules
 install:	 all \
 	$(addprefix $(INSTALL_SBINDIR)/, $(SBIN_STUFF)) \
 	$(addprefix $(INSTALL_LIBDIR)/,  $(LIB_STUFF)) 
+
+# not a client thing
+client:
+client-install: client
diff --git a/event/tbgen/GNUmakefile.in b/event/tbgen/GNUmakefile.in
index 0435e3a539ab92fe106b7d20b376506257ce1efc..b962e4583b3bb5f0706002223c805b345a2e9b2d 100644
--- a/event/tbgen/GNUmakefile.in
+++ b/event/tbgen/GNUmakefile.in
@@ -18,7 +18,6 @@ endif
 include $(OBJDIR)/Makeconf
 
 all:	$(PROGRAMS)
-client: tevc
 
 include $(TESTBED_SRCDIR)/GNUmakerules
 
@@ -50,9 +49,9 @@ endif
 LIBS     += -ldl
 endif
 
+# Link against some of the object files from libtb, instead of the
+# whole library, since the latter cannot be built on clients (without mysql)
 tevc:	tevc.o $(LIBTBDIR)/log.o $(LIBTBDIR)/tbdefs.o
-	# Link against some of the object files from libtb, instead of the
-	# whole library, since the latter cannot be built on ops
 	$(CC) $(LDFLAGS) -static -o $@ tevc.o $(LIBTBDIR)/log.o \
 		$(LIBTBDIR)/tbdefs.o $(LIBS)
 
@@ -68,7 +67,8 @@ install:	$(INSTALL_SBINDIR)/tevd \
 
 control-install:	$(INSTALL_BINDIR)/tevc
 
-client-install: tevc
+client: tevc
+client-install: client
 	$(INSTALL_PROGRAM) -s tevc $(DESTDIR)$(CLIENT_BINDIR)/tevc
 
 clean:
diff --git a/event/trafgen/GNUmakefile.in b/event/trafgen/GNUmakefile.in
index eccd6c0cd29ccce3409090ae3259008e233afbd6..077ed9f337d5acbaf3904fb483c6cbca5dbf3aba 100644
--- a/event/trafgen/GNUmakefile.in
+++ b/event/trafgen/GNUmakefile.in
@@ -52,7 +52,7 @@ SYSTEM	       := $(shell uname -s)
 ifeq ($(SYSTEM),FreeBSD)
 # FreeBSD
 CFLAGS	 += -DFREEBSD
-YCFLAGS	 += -I. -DUSEEVENTS -DFREEBSD
+YCFLAGS	 += -I. -I$(TGSRCDIR) -DUSEEVENTS -DFREEBSD
 LIBS	 += -ll -lcompat
 endif
 
@@ -86,7 +86,8 @@ $(PROGRAMS):	../lib/libevent.a ../lib/event.h
 
 install:
 
-client-install: trafgen
+client: $(PROGRAMS)
+client-install: client
 	$(INSTALL_PROGRAM) -s trafgen $(DESTDIR)$(CLIENT_BINDIR)/trafgen
 
 clean:
diff --git a/lib/libtb/GNUmakefile.in b/lib/libtb/GNUmakefile.in
index cbe5ada620f61bcc7655f9b21709c652432f1adc..4288beed0e42f1ba642c59669e1e5d8730b1dceb 100644
--- a/lib/libtb/GNUmakefile.in
+++ b/lib/libtb/GNUmakefile.in
@@ -15,6 +15,7 @@ all:	libtb.a
 
 client:	libtb-nodb.a
 	mv libtb-nodb.a libtb.a
+client-install: client
 
 include $(TESTBED_SRCDIR)/GNUmakerules
 
diff --git a/os/GNUmakefile.in b/os/GNUmakefile.in
index 9420f91d4c00d7f41e4ebff646b5c483362d2ef4..05adeebc912e985670f0c3d124fc4b372ef7462a 100644
--- a/os/GNUmakefile.in
+++ b/os/GNUmakefile.in
@@ -27,16 +27,25 @@ install: $(INSTALL_SBINDIR)/split-image.sh
 control-install: 
 	@$(MAKE) -C imagezip install
 
-client-install: 
+client:
+ifneq ($(SYSTEM),Linux)
+	$(MAKE) -C imagezip client
+	$(MAKE) -C growdisk client
+endif
+	$(MAKE) -C syncd client
+	$(MAKE) -C dijkstra client
+	$(MAKE) -C genhostsfile client
+
+client-install: client
 	$(INSTALL) -m 755 -o root -g wheel -d $(LBINDIR)
 	$(INSTALL_PROGRAM) $(SRCDIR)/install-tarfile $(LBINDIR)/install-tarfile
 	$(INSTALL_PROGRAM) $(SRCDIR)/install-rpm $(LBINDIR)/install-rpm
 ifneq ($(SYSTEM),Linux)
 	$(INSTALL_PROGRAM) $(SRCDIR)/create-image $(LBINDIR)/create-image
 	$(MAKE) -C imagezip client-install
+	$(MAKE) -C growdisk client-install
 endif
 	$(MAKE) -C syncd client-install
-	$(MAKE) -C growdisk client-install
 	$(MAKE) -C dijkstra client-install
 	$(MAKE) -C genhostsfile client-install
 
diff --git a/os/dijkstra/GNUmakefile.in b/os/dijkstra/GNUmakefile.in
index 1421136225c1838b89c3438782a90b5e695ae656..4d85ff349a5522580c239045352b473b781fee46 100644
--- a/os/dijkstra/GNUmakefile.in
+++ b/os/dijkstra/GNUmakefile.in
@@ -22,7 +22,8 @@ dijkstra:	dijkstra.o bitmath.o Compressor.o IpTree.o SingleSource.o \
                 Compressor.h lib.h
 	$(CXX) $(CXXFLAGS) -static dijkstra.o bitmath.o Compressor.o IpTree.o SingleSource.o $(LIBS) -o dijkstra
 
-client-install: dijkstra
+client: all
+client-install: client
 	$(INSTALL_PROGRAM) dijkstra $(DESTDIR)$(CLIENT_BINDIR)/dijkstra
 
 clean:
diff --git a/os/genhostsfile/GNUmakefile.in b/os/genhostsfile/GNUmakefile.in
index 0124f0b7e05fa24fe7230b27159367a4663fa0ee..239ff46ea1ef3856378aa198f7ae912950626762 100644
--- a/os/genhostsfile/GNUmakefile.in
+++ b/os/genhostsfile/GNUmakefile.in
@@ -25,8 +25,9 @@ wgraph.o:	wgraph.cc wgraph.h
 
 install:	$(INSTALL_LIBEXECDIR)/genhostsfile
 
-client-install: genhostsfile
-	$(INSTALL_PROGRAM) genhostsfile $(DESTDIR)$(CLIENT_BINDIR)/genhostsfile
+client: genhostsfile
+client-install: client
+	$(INSTALL_PROGRAM) -s genhostsfile $(DESTDIR)$(CLIENT_BINDIR)/genhostsfile
 
 clean:
 	rm -f *.o genhostsfile genfromtopo genfromdb
diff --git a/os/growdisk/GNUmakefile.in b/os/growdisk/GNUmakefile.in
index f1b88d87662556ccb3f4304b0c7fee63614d507b..af01692fcd424f169f8d51763adcec16dc2ab24d 100644
--- a/os/growdisk/GNUmakefile.in
+++ b/os/growdisk/GNUmakefile.in
@@ -24,7 +24,8 @@ growdisk: growdisk.o
 
 install:
 
-client-install: growdisk
+client: all
+client-install: client
 	$(INSTALL_PROGRAM) growdisk $(DESTDIR)$(CLIENT_BINDIR)
 
 clean:
diff --git a/os/imagezip/GNUmakefile.in b/os/imagezip/GNUmakefile.in
index a418114fe85e505d2a8a2c186539765b698a99bf..8baa0a60f412f6d4a0bb91135079eb1e13a8f5c9 100644
--- a/os/imagezip/GNUmakefile.in
+++ b/os/imagezip/GNUmakefile.in
@@ -112,7 +112,8 @@ version.c: imagezip.c imageunzip.c imagedump.c
 
 install: $(INSTALL_BINDIR)/imagezip $(INSTALL_BINDIR)/imageunzip $(INSTALL_BINDIR)/imagedump
 
-client-install: all
+client: all
+client-install: client
 	$(INSTALL) -m 755 -o root -g wheel -d $(DESTDIR)/usr/local/bin
 	$(INSTALL_PROGRAM) imagezip $(DESTDIR)/usr/local/bin/imagezip
 	$(INSTALL_PROGRAM) imageunzip $(DESTDIR)/usr/local/bin/imageunzip
diff --git a/os/syncd/GNUmakefile.in b/os/syncd/GNUmakefile.in
index 24a793097f1a5e6d5d3dafd07fa8b02f05997d72..9a2aadb7dd7a695e97b907c1170db39eb48d5828 100644
--- a/os/syncd/GNUmakefile.in
+++ b/os/syncd/GNUmakefile.in
@@ -28,16 +28,13 @@ emulab-sync:	emulab-sync.o version.o decls.h
 version.c: emulab-syncd.c 
 	echo >$@ "char build_info[] = \"Built `date +%d-%b-%Y` by `id -nu`@`hostname | sed 's/\..*//'`:`pwd`\";"
 
-client-install: emulab-syncd emulab-sync
-	$(INSTALL_PROGRAM) -s emulab-syncd \
-		$(DESTDIR)$(CLIENT_BINDIR)/emulab-syncd
-	$(INSTALL_PROGRAM) -s emulab-sync \
-		$(DESTDIR)$(CLIENT_BINDIR)/emulab-sync
+client: all
+client-install: client
+	$(INSTALL_PROGRAM) -s emulab-syncd $(DESTDIR)$(CLIENT_BINDIR)/emulab-syncd
+	$(INSTALL_PROGRAM) -s emulab-sync $(DESTDIR)$(CLIENT_BINDIR)/emulab-sync
 	$(INSTALL) -m 755 -o root -g wheel -d $(DESTDIR)$(CLIENT_MANDIR)/man1
-	$(INSTALL_PROGRAM) $(SRCDIR)/emulab-syncd.1 \
-		$(DESTDIR)$(CLIENT_MANDIR)/man1/emulab-syncd.1
-	$(INSTALL_PROGRAM) $(SRCDIR)/emulab-sync.1 \
-		$(DESTDIR)$(CLIENT_MANDIR)/man1/emulab-sync.1
+	$(INSTALL_PROGRAM) $(SRCDIR)/emulab-syncd.1 $(DESTDIR)$(CLIENT_MANDIR)/man1/emulab-syncd.1
+	$(INSTALL_PROGRAM) $(SRCDIR)/emulab-sync.1 $(DESTDIR)$(CLIENT_MANDIR)/man1/emulab-sync.1
 
 check:
 	sh $(SRCDIR)/syncd_test.sh
diff --git a/sensors/GNUmakefile.in b/sensors/GNUmakefile.in
index b3e3e248d458b2fb7b537404294a8170556443a8..7105b671bbd54d0534c790ce586a7580ea351296 100644
--- a/sensors/GNUmakefile.in
+++ b/sensors/GNUmakefile.in
@@ -4,7 +4,7 @@
 SRCDIR		= @srcdir@
 TESTBED_SRCDIR	= @top_srcdir@
 OBJDIR		= ..
-SUBDIR		= lib
+SUBDIR		= sensors
 
 include $(OBJDIR)/Makeconf
 
@@ -20,7 +20,10 @@ slothd:
 install: 
 	@$(MAKE) -C slothd install
 
-client-install:
+client:
+	@$(MAKE) -C slothd client
+
+client-install: client
 	@$(MAKE) -C slothd client-install
 
 clean:		subdir-clean
diff --git a/sensors/slothd/GNUmakefile.in b/sensors/slothd/GNUmakefile.in
index be557b48af0de8bb8cfd510c6640db410fb59578..0d3d7f6d0c731de0d39973b8312a5857665b2af4 100644
--- a/sensors/slothd/GNUmakefile.in
+++ b/sensors/slothd/GNUmakefile.in
@@ -52,7 +52,7 @@ version.c: slothd.c slothd.h sdcollectd.c sdcollectd.h
 	echo >$@ "char build_info[] = \"Built `date +%d-%b-%Y` by `id -nu`@`hostname | sed 's/\..*//'`:`pwd`\";"
 
 client: slothd
-	-mkdir $(SLOTHD_DIR)
+	-mkdir -p $(SLOTHD_DIR)
 	$(CP) slothd $(SLOTHD_DIR)/slothd
 
 install: $(addprefix $(INSTALL_SBINDIR)/, $(SBIN_SCRIPTS) sdcollectd)
diff --git a/tmcd/GNUmakefile.in b/tmcd/GNUmakefile.in
index 37534c724a119b42b4052a4c7cf47235f9f811fd..e30b78ccc6c5bd87bbec1a35e5d12ea67af42644 100644
--- a/tmcd/GNUmakefile.in
+++ b/tmcd/GNUmakefile.in
@@ -11,8 +11,9 @@ SYSTEM	       := $(shell uname -s)
 
 include $(OBJDIR)/Makeconf
 
-all:	server client
-client: tmcc tmcc-nossl findif
+all:	server fullclient client
+fullclient: tmcc
+client: tmcc-nossl findif
 server: tmcd tmcd.restart
 
 include $(TESTBED_SRCDIR)/GNUmakerules
@@ -29,17 +30,27 @@ SSLFLAGS = -DWITHSSL
 TMLIBS	+= -lssl -lcrypto
 SSLOBJ   = ssl.o
 ifeq ($(SYSTEM),Linux)
+RHLVERSION    := $(shell cat /etc/redhat-release | sed -e 's/Red Hat Linux release \([0-9]\).*/Linux\1/')
 NEEDKERB := $(shell nm /usr/lib/libssl.a | grep -q krb; echo $$?)
 ifeq ($(NEEDKERB),0)
  CFLAGS   += `/usr/kerberos/bin/krb5-config --cflags`
  TMLIBS   += `/usr/kerberos/bin/krb5-config --libs krb5`
 endif
 TMLIBS  += -ldl
+ifeq ($(RHLVERSION),Linux9)
+MDSUBDIR  = linux9
+else
 MDSUBDIR  = linux
 endif
+endif
 ifeq ($(SYSTEM),FreeBSD)
+FBSDVERSION    := $(shell uname -v | sed -e 's/FreeBSD \([0-9]\).*/FreeBSD\1/')
+ifeq ($(FBSDVERSION),FreeBSD5)
+MDSUBDIR  = freebsd5
+else
 MDSUBDIR  = freebsd
 endif
+endif
 
 ifeq ($(EVENTSYS),1)
 	TMCDCFLAGS = `elvin-config --cflags vin4c` \
@@ -79,7 +90,7 @@ install:	$(INSTALL_SBINDIR)/tmcd \
 		$(INSTALL_SBINDIR)/tmcd.restart
 
 
-client-install: tmcc-nossl findif
+client-install: client
 	@$(MAKE) -C $(MDSUBDIR) install
 
 $(INSTALL_BINDIR)/tmcd/%: %
diff --git a/tmcd/common/GNUmakefile.in b/tmcd/common/GNUmakefile.in
index bb7776bed40ad63478e0f3dc9ca3dad47584db68..f71d89277000c1e1d2f4b2355cf077c61d0fae57 100644
--- a/tmcd/common/GNUmakefile.in
+++ b/tmcd/common/GNUmakefile.in
@@ -32,7 +32,7 @@ TBBINDIR	= $(DESTDIR)/usr/testbed/bin
 TBLIBDIR	= $(DESTDIR)/usr/testbed/lib
 INSTALL		= /usr/bin/install -c
 
-install:
+install client-install:
 	@echo "You should probably not run this install directly!"
 	@echo "If you do, be sure to install from the system specific "
 	@echo "directory afterwards."
diff --git a/tmcd/freebsd/GNUmakefile.in b/tmcd/freebsd/GNUmakefile.in
index 9454e48cd949a9516e6cf3d08438164920062eb8..208a1b143ba5a067072015092c78e8f113f7e6dd 100644
--- a/tmcd/freebsd/GNUmakefile.in
+++ b/tmcd/freebsd/GNUmakefile.in
@@ -41,7 +41,7 @@ INSTALL		= /usr/bin/install -c
 injail: $(SRCDIR)/jail/injail.c
 	$(CC) $(CFLAGS) -O2 -o injail $<
 
-install:	common-install etc-install \
+install client-install:	common-install etc-install \
 			sup-install script-install bin-install jail-install
 	@echo "Remember to install the PEM files if necessary"
 
diff --git a/tmcd/freebsd/prepare b/tmcd/freebsd/prepare
index 8e778383847c18409bead2afa3386b09d8ced345..36e221b283baf78deaf1a8f96a4a921fa7b02c1c 100755
--- a/tmcd/freebsd/prepare
+++ b/tmcd/freebsd/prepare
@@ -29,6 +29,18 @@ my $SFSUSERS    = "/etc/sfs/sfs_users";
 my $SFSHOSTKEY  = "/etc/sfs/sfs_host_key";
 my $MOUNTINFO	= "/var/db/mounttab";
 
+#
+# Dead wood in $BINDIR
+# If you remove/move a script, list it here so that it goes away when the
+# image is remade.
+#
+my @DEADFILES	= ("rc.agents", "rc.delayagent", "rc.delta", "rc.healthd",
+		   "rc.injail", "rc.ipod", "rc.mfs", "rc.progagent",
+		   "rc.setup", "rc.slothd", "rc.testbed",
+		   "batchcmddone", "bootsetup", "install-tarfile",
+		   "jailsetup", "update_delays");
+
+
 #
 # Turn off line buffering on output
 #
@@ -189,3 +201,10 @@ foreach my $dir (@VARDIRS) {
     }
 }
 
+print "Clearing out old Emulab scripts and binaries in $BINDIR ...\n";
+foreach my $file (@DEADFILES) {
+    if (-f "$BINDIR/$file") {
+	unlink("$BINDIR/$file") or
+	    warn("*** could not remove $BINDIR/$file\n");
+    }
+}
diff --git a/tmcd/freebsd5/GNUmakefile.in b/tmcd/freebsd5/GNUmakefile.in
index 979a1c6a25f284026a7743d8125fcb49d5fe9473..83f44705eaf51e99b0e6c0fe800890c598c79272 100644
--- a/tmcd/freebsd5/GNUmakefile.in
+++ b/tmcd/freebsd5/GNUmakefile.in
@@ -38,9 +38,27 @@ RCDIR		= $(DESTDIR)/usr/local/etc/rc.d
 ISMFS		= $(ETCDIR)/ismfs
 INSTALL		= /usr/bin/install -c
 
-install:	basefbsd-install etc-install \
+install client-install:	basefbsd-install etc-install \
 			sup-install script-install bin-install # jail-install
 
+destdircheck:
+	@if [ -z "$(DESTDIR)" ]; then \
+	    echo "You must define DESTDIR for this target!"; \
+	    false; \
+	fi
+
+cdboot-install:	destdircheck basefbsdcdboot-install etc-install \
+			script-install bin-install
+	rm -f $(SYSETCDIR)/start_if.*
+	rm -f $(SYSETCDIR)/rc.cdroot $(SYSETCDIR)/fstab.lbs
+	rm -f $(DESTDIR)/boot/loader.rc.lbs
+	$(INSTALL) -m 755 $(SRCDIR)/cdboot/rc.conf $(SYSETCDIR)/rc.conf
+	$(INSTALL) -m 755 $(SRCDIR)/cdboot/rc.cdboot $(BINDIR)/rc/rc.cdboot
+	$(INSTALL) -m 755 $(SRCDIR)/cdboot/cdroot $(SYSETCDIR)/rc.d/cdroot
+	cp $(SRCDIR)/cdboot/fstab $(SYSETCDIR)/fstab
+	cp $(SRCDIR)/cdboot/loader.conf $(DESTDIR)/boot/loader.conf
+	cp $(SRCDIR)/cdboot/.profile $(DESTDIR)/.profile
+
 simple-install:	script-install bin-install # jail-install
 
 dir-install:
@@ -63,6 +81,9 @@ basefbsd-install: dir-install
 	(cd ../freebsd; $(MAKE) all install)
 	rm -f $(SYSETCDIR)/start_if.*
 
+basefbsdcdboot-install: dir-install
+	(cd ../freebsd; $(MAKE) DESTDIR=$(DESTDIR) all cdboot-install)
+
 sup-install:	dir-install supfile
 	$(INSTALL) -m 755 ./supfile $(ETCDIR)/supfile
 
diff --git a/tmcd/linux/GNUmakefile.in b/tmcd/linux/GNUmakefile.in
index f4c7a1c62040de90495a89a982e4d993881a1313..57a56e8f11649d9bc93d86c8f1bc5665c1fd00e8 100644
--- a/tmcd/linux/GNUmakefile.in
+++ b/tmcd/linux/GNUmakefile.in
@@ -37,13 +37,21 @@ RCDIR		= $(SYSETCDIR)/rc.d
 INSTALL		= /usr/bin/install -c 
 COMMON		= $(SRCDIR)/../common
 
-install:	common-install etc-install \
+install client-install:	common-install etc-install \
 			sup-install script-install bin-install
 	@echo "Remember to install the PEM files if necessary"
 
 simple-install:	common-install script-install bin-install
 
 dir-install:
+	$(INSTALL) -m 755 -o root -g wheel -d $(SYSETCDIR)
+	$(INSTALL) -m 755 -o root -g wheel -d $(SYSETCDIR)/sysconfig
+	$(INSTALL) -m 755 -o root -g wheel -d $(SYSETCDIR)/sysconfig/network-scripts
+	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)
+	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)/init.d
+	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)/rc1.d
+	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)/rc3.d
+	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)/rc6.d
 	$(INSTALL) -m 755 -o root -g wheel -d $(ETCDIR)
 	$(INSTALL) -m 755 -o root -g wheel -d $(BINDIR)
 	$(INSTALL) -m 755 -o root -g wheel -d $(RCDIR)
diff --git a/tmcd/linux/prepare b/tmcd/linux/prepare
index 59ff4e90f22ac6f1b9c8f8f734a0b4c3a1ca27d3..fc62bd27fd47f731fefdecf8aeacaabb7b70ad87 100755
--- a/tmcd/linux/prepare
+++ b/tmcd/linux/prepare
@@ -13,7 +13,7 @@ require 'ctime.pl';
 #
 my $DUMPDATES   = "/etc/dumpdates";
 my @DBFILES     = ();
-my @VARDIRS	= ("logs", "db", "jails", "boot", "lock");
+my @VARDIRS	= ("logs", "db", "jails", "boot", "lock", "lib/dhcp");
 my $FSTAB       = "/etc/fstab";
 my $LOGDIR      = "/var/log";
 my $RUNDIR      = "/var/run";
diff --git a/tmcd/linux9/GNUmakefile.in b/tmcd/linux9/GNUmakefile.in
new file mode 100644
index 0000000000000000000000000000000000000000..824498ee39af66c1074749a85a21b5a0fea05306
--- /dev/null
+++ b/tmcd/linux9/GNUmakefile.in
@@ -0,0 +1,74 @@
+#
+# EMULAB-COPYRIGHT
+# Copyright (c) 2000-2004 University of Utah and the Flux Group.
+# All rights reserved.
+#
+
+#
+# XXX ONLY RUN THIS INSTALL ON A LINUX TESTBED NODE!
+#
+# Trivial. These things just need to be installed into the right place
+# on a testbed node before cutting an image.
+#
+#
+SRCDIR		= @srcdir@
+TESTBED_SRCDIR	= @top_srcdir@
+OBJDIR		= ../..
+SUBDIR		= tmcd/linux9
+
+include $(OBJDIR)/Makeconf
+
+SCRIPTS		= 
+
+#
+# Force dependencies on the scripts so that they will be rerun through
+# configure if the .in file is changed.
+# 
+all:	supfile ifcfgs
+
+include $(TESTBED_SRCDIR)/GNUmakerules
+
+DESTDIR		=
+SYSETCDIR	= $(DESTDIR)/etc
+ETCDIR		= $(DESTDIR)$(CLIENT_ETCDIR)
+BINDIR		= $(DESTDIR)$(CLIENT_BINDIR)
+VARDIR		= $(DESTDIR)$(CLIENT_VARDIR)
+RCDIR		= $(SYSETCDIR)/rc.d
+INSTALL		= /usr/bin/install -c 
+COMMON		= $(SRCDIR)/../common
+
+install client-install:	baselinux-install common-install etc-install \
+			sup-install script-install bin-install
+	@echo "Remember to install the PEM files if necessary"
+
+simple-install:	common-install script-install bin-install
+
+dir-install:
+
+baselinux-install: dir-install
+	(cd ../linux; $(MAKE) client-install)
+	rm -f $(SYSETCDIR)/pump.conf
+#	rm -f $(SYSETCDIR)/sysconfig/network-scripts/ifcfg-eth?
+
+common-install:	dir-install
+	(cd ../common; $(MAKE) local-install)
+
+sup-install:	dir-install supfile
+	$(INSTALL) -m 755 ./supfile $(ETCDIR)/supfile
+
+bin-install:	dir-install
+
+etc-install:	dir-install sysetc-remove sysetc-install
+
+sysetc-install:	ifcfgs dir-install
+#	$(INSTALL) -m 755 ifcfg-eth[0-9]* $(SYSETCDIR)/sysconfig/network-scripts
+
+sysetc-remove:
+
+script-install:	dir-install $(SCRIPTS)
+
+sfs-install:
+
+# create ifcfg-eth? files
+ifcfgs: $(SRCDIR)/mkifcfgs $(SRCDIR)/ifcfg.template
+#	$(SRCDIR)/mkifcfgs $(SRCDIR)/ifcfg.template
diff --git a/tmcd/linux9/supfile.in b/tmcd/linux9/supfile.in
new file mode 100644
index 0000000000000000000000000000000000000000..9745dc1fa768169622466683fcc6126511c26fee
--- /dev/null
+++ b/tmcd/linux9/supfile.in
@@ -0,0 +1,4 @@
+#
+# Bump as needed
+#
+RHL90-STD  base=@CLIENT_VARDIR@ prefix=/ preserve release=20040319
diff --git a/tmcd/openbsd/GNUmakefile.in b/tmcd/openbsd/GNUmakefile.in
index 83dc43973a5cca6c5f72b14b1c54cb18d9f86de1..d7521bbbd4863d52e3b8d6c68cf43b78e473e43e 100644
--- a/tmcd/openbsd/GNUmakefile.in
+++ b/tmcd/openbsd/GNUmakefile.in
@@ -1,6 +1,6 @@
 #
 # EMULAB-COPYRIGHT
-# Copyright (c) 2000-2003 University of Utah and the Flux Group.
+# Copyright (c) 2000-2004 University of Utah and the Flux Group.
 # All rights reserved.
 #
 
@@ -33,7 +33,7 @@ RCDIR		= $(DESTDIR)/usr/local/etc/rc.d
 ISMFS		= $(ETCDIR)/ismfs
 INSTALL		= /usr/bin/install -c
 
-install:	common-install etc-install \
+install client-install:	common-install etc-install \
 			sup-install script-install bin-install jail-install
 	@echo "Remember to install the PEM files if necessary"
 
diff --git a/tmcd/plab/GNUmakefile.in b/tmcd/plab/GNUmakefile.in
index 6258078f0e6aac10de63e70f5dec2a612c8ddb3a..ef4e0a03190bdbc34a4ef26cd6168d92b06b3011 100644
--- a/tmcd/plab/GNUmakefile.in
+++ b/tmcd/plab/GNUmakefile.in
@@ -97,7 +97,7 @@ tmcc:
 	@echo "prior to building the tarball."
 	@false
 
-install:
+install client-install:
 
 rootball-install: 
 	$(INSTALL_DATA) $(ROOTBALLNAME) $(INSTALL_ETCDIR)/plab
diff --git a/tmcd/ron/GNUmakefile.in b/tmcd/ron/GNUmakefile.in
index 4aedd81620fdcbd2c2d17a43e3eb38ece88477e1..fd731ce2749d7546c47295a322cc41489a3ee68b 100644
--- a/tmcd/ron/GNUmakefile.in
+++ b/tmcd/ron/GNUmakefile.in
@@ -1,6 +1,6 @@
 #
 # EMULAB-COPYRIGHT
-# Copyright (c) 2000-2003 University of Utah and the Flux Group.
+# Copyright (c) 2000-2004 University of Utah and the Flux Group.
 # All rights reserved.
 #
 
@@ -31,6 +31,7 @@ VARDIR		= $(DESTDIR)$(CLIENT_VARDIR)
 RCDIR		= $(DESTDIR)/usr/local/etc/rc.d
 INSTALL		= /usr/bin/install -c
 
+client-install:
 wa-install:	wa-stuff doinstall
 ron-install:	ron-stuff doinstall
 doinstall:	common-install etc-install sysetc-install other-install \