Commit 82c44bc1 authored by Mike Frysinger's avatar Mike Frysinger

Makefile: respect CPPFLAGS when compiling

These contain user flags like -I/-D options.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent f3ba8a81
......@@ -58,7 +58,7 @@ install: $(BINARY) $(MANS)
install -m 644 $(MANS) $(DESTDIR)$(MAN1DIR)
%.o: %.c
$(CC) $(CFLAGS) -DEXTRA_VERSION=\"${EXTRA_VERSION}\" -c -o $@ $<
$(CC) $(CFLAGS) $(CPPFLAGS) -DEXTRA_VERSION=\"${EXTRA_VERSION}\" -c -o $@ $<
%.ps: %.1
man -t ./$< > $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment