The Makefile made libutil.a and libutf.a identical. Here is a patch to fix this.
diff --git a/Makefile b/Makefile
index 1f01866..9143406 100644
--- a/Makefile
+++ b/Makefile
@@ -149,7 +149,11 @@ $(OBJ): $(HDR) config.mk
 .c.o:
 	$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
 
-$(LIB): $(LIBUTFOBJ) $(LIBUTILOBJ)
+$(LIBUTF): $(LIBUTFOBJ)
+	$(AR) -r -c $@ $?
+	$(RANLIB) $@
+
+$(LIBUTIL): $(LIBUTILOBJ)
 	$(AR) -r -c $@ $?
 	$(RANLIB) $@
 

Reply via email to