From: Joel Rosdahl Date: Sun, 28 Feb 2010 09:27:24 +0000 (+0100) Subject: Portability: Define explicit compilation rule to pick up CPPFLAGS on HP-UX X-Git-Tag: v3.0pre0~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5dad3c61b9d66577e55547ff024d184797436f5;p=thirdparty%2Fccache.git Portability: Define explicit compilation rule to pick up CPPFLAGS on HP-UX --- diff --git a/Makefile.in b/Makefile.in index 65dca3041..797ee6175 100644 --- a/Makefile.in +++ b/Makefile.in @@ -68,4 +68,7 @@ distclean: clean installcheck: CCACHE=$(bindir)/ccache $(srcdir)/test.sh +.c.o: + $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $< + @include_dev_mk@