diff options
author | Arnaud Fontaine <arnau@debian.org> | 2012-05-24 12:29:36 +0900 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2012-12-19 19:39:09 +0900 |
commit | d182e67e31420d7eb442151a1106faa8930f0b5d (patch) | |
tree | ff7c2211fdd42b23643e3ad85f7b4e04e6d15659 | |
parent | b82c4e3ec155b3749e9a59c52d168460b24c636c (diff) |
Makefile: add missing $(CPPFLAGS) to compiler.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ docs: $(MAKE) -C $(DOCDIR) emms-print-metadata: $(SRCDIR)/emms-print-metadata.c - $(CC) $(CFLAGS) $(LDFLAGS) -o $(SRCDIR)/$@ $< `taglib-config --cflags --libs` -ltag_c + $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $(SRCDIR)/$@ $< `taglib-config --cflags --libs` -ltag_c install: test -d $(SITELISP) || mkdir -p $(SITELISP) |