Index: /trunk/Ohana/Makefile
===================================================================
--- /trunk/Ohana/Makefile	(revision 2580)
+++ /trunk/Ohana/Makefile	(revision 2581)
@@ -42,4 +42,5 @@
 mosastro.v2 \
 nightd      \
+opihi.v1    \
 opihi.v2    \
 perl        \
@@ -91,12 +92,12 @@
 # standard rules: targets are foo, foo.clean, foo.install, foo.dist
 $(PROGRAM) $(LIBS-$(ARCH)): 
-	(cd src/$@ && make)
+	if [ -e "src/$@" ]; then (cd src/$@ && make); fi
 
 %.install:
 	mkdir -p bin/$(ARCH)
-	(cd src/$* && make install)
+	if [ -e "src/$*" ]; then (cd src/$* && make install); fi
 
 %.clean:
-	(cd src/$* && make clean)
+	if [ -e "src/$*" ]; then (cd src/$* && make clean); fi
 
 %.dist:
