diff options
author | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-09-05 11:51:36 +0300 |
---|---|---|
committer | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-09-05 11:51:36 +0300 |
commit | d27e4146e89cc2b0d0f2e6672be9017e724a7c28 (patch) | |
tree | e2cd6f59b0d760f1df7f8e9aae9e630c37c73e7b /Makefile | |
parent | 7bdab74e1923e9be251ae0a0f8a1eef268b91fbd (diff) |
Makefile: Invoke pkg-config using the shell.
$(pkg-config) is not a GNU Make extension.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ all: $(ALL_TRACES) lzma -cd $< | ./csi-bind > $@ csi-bind: csi-bind.c - $(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(pkg-config cairo --libs) -o $@ + $(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@ csi-trace: csi-trace.c $(CC) $(CFLAGS) $(shell pkg-config cairo --cflags) $^ -lcairo-script-interpreter $(shell pkg-config cairo --libs) -o $@ |