Commit 0691a597 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Made compilation of *.spec.c files use -fno-builtin regardless of

where they are.
parent 26ffb3cd
......@@ -77,11 +77,15 @@ OBJS = $(C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) $(ASM_SRCS:.S=.o) $(RC_SRCS:.rc=.o)
# Implicit rules
.SUFFIXES: .rc .res .spec .spec.c .glue.s
.SUFFIXES:
.SUFFIXES: .rc .res .spec .spec.c .spec.o .glue.s $(SUFFIXES)
.c.o:
$(CC) -c $(ALLCFLAGS) -o $*.o $<
.spec.c.spec.o:
$(CC) -c $(ALLCFLAGS) @GCC_NO_BUILTIN@ -o $*.spec.o $<
.s.o:
$(AS) -o $*.o $<
......
DEFS = @DLLFLAGS@ @GCC_NO_BUILTIN@ -D__WINE__
DEFS = @DLLFLAGS@ -D__WINE__
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ..
SRCDIR = @srcdir@
......
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