<Whistle> Umm.. Made a minor mistake put -o instead of -c in .c.o section.
Wonder why I did not catch it during the test compile on TWO different
platforms!
diff --git a/Makefile.in b/Makefile.in
index e05ddd1..21a345d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -75,7 +75,7 @@
 $(LIBOPENBSD_COMPAT_OBJS): config.h
 
 .c.o:
-	$(CC) $(CFLAGS) $(CPPFLAGS) -o $<
+	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
 
 libopenbsd-compat.a: $(LIBOPENBSD_COMPAT_OBJS)
 	$(AR) rv $@ $(LIBOPENBSD_COMPAT_OBJS)