[cairo-commit] 2 commits - Makefile

Chris Wilson ickle at kemper.freedesktop.org
Sun Sep 13 12:58:48 PDT 2009


 Makefile |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit b889dfc97c585d737b1b6ab139c0dbcd1ef01cf4
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Sun Sep 13 20:58:25 2009 +0100

    Makefile: temporary fix to find -lcairo-script-interperter

diff --git a/Makefile b/Makefile
index cf48adc..4242673 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,9 @@ benchmarks: $(QUICK_LZMA:.lzma=.trace)
 	lzma -cd $< | ./csi-bind > $@
 
 csi-bind: csi-bind.c
-	$(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@
+	$(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ $(shell pkg-config cairo --libs) -lcairo-script-interpreter -o $@
 csi-trace: csi-trace.c
-	$(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@
+	$(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ $(shell pkg-config cairo --libs) -lcairo-script-interpreter -o $@
 
 ##########################################################
 # Some targets to make and upload a snapshot of the traces
commit 05a4cc4f0b359ac8c546742eb1d3c293347566e6
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Sun Sep 13 20:57:55 2009 +0100

    Makefile: add target to build benchmarks only

diff --git a/Makefile b/Makefile
index 6219466..cf48adc 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ ALL_LZMA:= $(FULL_LZMA) $(QUICK_LZMA)
 ALL_TRACES := $(ALL_LZMA:.lzma=.trace)
 
 all: $(ALL_TRACES)
+benchmarks: $(QUICK_LZMA:.lzma=.trace)
 
 %.trace: %.lzma csi-bind
 	lzma -cd $< | ./csi-bind > $@


More information about the cairo-commit mailing list