Made compilation of *.spec.c files use -fno-builtin regardless of
where they are.
This commit is contained in:
parent
26ffb3cd76
commit
0691a59736
|
@ -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 $<
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
DEFS = @DLLFLAGS@ @GCC_NO_BUILTIN@ -D__WINE__
|
||||
DEFS = @DLLFLAGS@ -D__WINE__
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ..
|
||||
SRCDIR = @srcdir@
|
||||
|
|
Loading…
Reference in New Issue