summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/ucl/Makefile6
-rw-r--r--tools/ucl/src/Makefile2
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/ucl/Makefile b/tools/ucl/Makefile
index a555e727ec..166ce39927 100644
--- a/tools/ucl/Makefile
+++ b/tools/ucl/Makefile
@@ -6,12 +6,12 @@
6# \/ \/ \/ \/ \/ 6# \/ \/ \/ \/ \/
7# $Id$ 7# $Id$
8# 8#
9CFLAGS = -O2 -Iinclude 9CFLAGS+ = -O2 -Iinclude
10 10
11TARGET = ../uclpack 11TARGET = ../uclpack
12 12
13$(TARGET): uclpack.o src/libucl.a 13$(TARGET): uclpack.o src/libucl.a
14 $(CC) uclpack.o src/libucl.a -o $(TARGET) 14 $(CC) $(CFLAGS) uclpack.o src/libucl.a -o $(TARGET)
15 15
16uclpack.o: uclpack.c 16uclpack.o: uclpack.c
17 17
@@ -20,4 +20,4 @@ src/libucl.a:
20 20
21clean: 21clean:
22 rm -f $(TARGET) uclpack.o 22 rm -f $(TARGET) uclpack.o
23 $(MAKE) -C src clean \ No newline at end of file 23 $(MAKE) -C src clean
diff --git a/tools/ucl/src/Makefile b/tools/ucl/src/Makefile
index ab6b6c9c0b..c010cdf23c 100644
--- a/tools/ucl/src/Makefile
+++ b/tools/ucl/src/Makefile
@@ -6,7 +6,7 @@
6# \/ \/ \/ \/ \/ 6# \/ \/ \/ \/ \/
7# $Id$ 7# $Id$
8# 8#
9CFLAGS = -I../include 9CFLAGS += -I../include
10 10
11ifndef V 11ifndef V
12SILENT = @ 12SILENT = @