summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/Makefile2
-rw-r--r--tools/tools.make2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index d63be9e919..92af254fcd 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -94,7 +94,7 @@ usb_benchmark: usb_benchmark.c
94convttf: convttf.c 94convttf: convttf.c
95 $(call PRINTS,CC $(@F)) 95 $(call PRINTS,CC $(@F))
96 $(SILENT)$(CC) $(CFLAGS) -lm -std=c99 -O2 -Wall -g $+ -o $@ \ 96 $(SILENT)$(CC) $(CFLAGS) -lm -std=c99 -O2 -Wall -g $+ -o $@ \
97 `freetype-config --libs` `freetype-config --cflags` 97 `pkg-config --cflags --libs freetype2`
98 98
99clean: 99clean:
100 @echo "Cleaning tools" 100 @echo "Cleaning tools"
diff --git a/tools/tools.make b/tools/tools.make
index 3350ad03bc..483d306950 100644
--- a/tools/tools.make
+++ b/tools/tools.make
@@ -38,7 +38,7 @@ $(TOOLSDIR)/uclpack: $(TOOLSDIR)/ucl/uclpack.c $(wildcard $(TOOLSDIR)/ucl/src/*.
38$(TOOLSDIR)/convttf: $(TOOLSDIR)/convttf.c 38$(TOOLSDIR)/convttf: $(TOOLSDIR)/convttf.c
39 $(call PRINTS,CC $(@F)) 39 $(call PRINTS,CC $(@F))
40 $(SILENT)$(HOSTCC) $(TOOLSFLAGS) -lm -O2 -Wall -g $+ -o $@ \ 40 $(SILENT)$(HOSTCC) $(TOOLSFLAGS) -lm -O2 -Wall -g $+ -o $@ \
41 `freetype-config --libs` `freetype-config --cflags` 41 `pkg-config --cflags --libs freetype2`
42 42
43# implicit rule for simple tools 43# implicit rule for simple tools
44$(TOOLSDIR)/%: $(TOOLSDIR)/%.c 44$(TOOLSDIR)/%: $(TOOLSDIR)/%.c