mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Add rule for generating .i (preprocessed) files from .c files
svn path=/trunk/; revision=9517
This commit is contained in:
parent
11f4efc511
commit
26beb80a11
1 changed files with 3 additions and 1 deletions
|
@ -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:;
|
||||
|
||||
|
|
Loading…
Reference in a new issue