From 26beb80a117e4f428916580afeb5bce076be2557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Fri, 28 May 2004 18:16:46 +0000 Subject: [PATCH] Add rule for generating .i (preprocessed) files from .c files svn path=/trunk/; revision=9517 --- reactos/tools/helper.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/tools/helper.mk b/reactos/tools/helper.mk index 97cee87489b..1abf61ced50 100644 --- a/reactos/tools/helper.mk +++ b/reactos/tools/helper.mk @@ -1,4 +1,4 @@ -# $Id: helper.mk,v 1.62 2004/05/17 19:45:10 gvg Exp $ +# $Id: helper.mk,v 1.63 2004/05/28 18:16:46 gvg Exp $ # # Helper makefile for ReactOS modules # Variables this makefile accepts: @@ -1064,6 +1064,8 @@ endif # ROS_USE_PCH $(WINEBUILD) $(DEFS) -o $@ --def $< %.drv.spec.def: %.spec $(WINEBUILD) $(DEFS) -o $@ --def $< +%.i: %.c + $(CC) $(TARGET_CFLAGS) -E $< > $@ # Kill implicit rule .o:;