summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/ucl/src/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
index 1a8bf714fa..4481550dfc 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -18,10 +18,11 @@ OBJS = alloc.o io.o n2b_99.o n2b_d.o n2b_ds.o n2b_to.o n2d_99.o \
18 n2d_d.o n2d_ds.o n2d_to.o n2e_99.o n2e_d.o n2e_ds.o n2e_to.o ucl_crc.o \ 18 n2d_d.o n2d_ds.o n2d_to.o n2e_99.o n2e_d.o n2e_ds.o n2e_to.o ucl_crc.o \
19 ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o 19 ucl_dll.o ucl_init.o ucl_ptr.o ucl_str.o ucl_util.o
20 20
21# we don't use $(AR) and $(RANLIB) below since we want the _native_ tools
22# not the cross-compiler tools
21$(TARGET): $(OBJS) 23$(TARGET): $(OBJS)
22 $(SILENT)$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 24 $(SILENT)ar ruv $@ $(OBJS) >/dev/null 2>&1
23 $(SILENT)$(RANLIB) $@ 25 $(SILENT)ranlib $@
24
25 26
26clean: 27clean:
27 rm -f $(OBJS) $(TARGET) 28 rm -f $(OBJS) $(TARGET)