diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-13 20:58:25 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-13 20:58:25 +0100 |
commit | b889dfc97c585d737b1b6ab139c0dbcd1ef01cf4 (patch) | |
tree | da96e604aadd55009be44125cbcb2ff117acf0b5 /Makefile | |
parent | 05a4cc4f0b359ac8c546742eb1d3c293347566e6 (diff) |
Makefile: temporary fix to find -lcairo-script-interperter
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |