diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-04-05 12:56:05 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-04-05 12:56:05 +0000 |
commit | 231d1d255c0568664a1b657d27b6e770610c3c9c (patch) | |
tree | 420521f246e0112d1e7e03278fbc552553b4af9b /tools/ucl | |
parent | 6eafd48cec1895c5426961c4a54d0e22d58deb4d (diff) |
ranlib the .a file after creation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9513 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/ucl')
-rw-r--r-- | tools/ucl/src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile index e8c2bc7a56..1a8bf714fa 100644 --- a/tools/ucl/src/Makefile +++ b/tools/ucl/src/Makefile @@ -19,7 +19,8 @@ OBJS = alloc.o io.o n2b_99.o n2b_d.o n2b_ds.o n2b_to.o n2d_99.o \ ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o $(TARGET): $(OBJS) - ar ruv $(TARGET) $(OBJS) + $(SILENT)$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 + $(SILENT)$(RANLIB) $@ clean: |