aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorJoakim Verona2012-05-21 00:37:29 +0200
committerJoakim Verona2012-05-21 00:37:29 +0200
commit74f082445c1dd0c92d5bb187db0d50287e3a7bae (patch)
tree48e3d8fd9df3876665654eab9bcf96ec492a31e9 /src/Makefile.in
parent52862ad482e030e4d54cd7d6e250d76e59ee0554 (diff)
parent1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (diff)
downloademacs-74f082445c1dd0c92d5bb187db0d50287e3a7bae.tar.gz
emacs-74f082445c1dd0c92d5bb187db0d50287e3a7bae.zip
upstream, fix conflicts
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index e8b68040c44..8d4c5306782 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -40,6 +40,7 @@ version = @version@
40# Substitute an assignment for the MAKE variable, because 40# Substitute an assignment for the MAKE variable, because
41# BSD doesn't have it as a default. 41# BSD doesn't have it as a default.
42@SET_MAKE@ 42@SET_MAKE@
43MKDIR_P = @MKDIR_P@
43# Don't use LIBS. configure puts stuff in it that either shouldn't be 44# Don't use LIBS. configure puts stuff in it that either shouldn't be
44# linked with Emacs or is duplicated by the other stuff below. 45# linked with Emacs or is duplicated by the other stuff below.
45# LIBS = @LIBS@ 46# LIBS = @LIBS@
@@ -68,7 +69,8 @@ OTHER_FILES = @OTHER_FILES@
68PROFILING_CFLAGS = @PROFILING_CFLAGS@ 69PROFILING_CFLAGS = @PROFILING_CFLAGS@
69 70
70## Flags to pass to the compiler to enable build warnings 71## Flags to pass to the compiler to enable build warnings
71C_WARNINGS_SWITCH = @C_WARNINGS_SWITCH@ 72WARN_CFLAGS = @WARN_CFLAGS@
73WERROR_CFLAGS = @WERROR_CFLAGS@
72 74
73## Machine-specific CFLAGS. 75## Machine-specific CFLAGS.
74C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ 76C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
@@ -93,11 +95,9 @@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
93## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE. 95## substituted in this or any other Makefile. Cf C_SWITCH_X_SITE.
94LD_SWITCH_X_SITE= 96LD_SWITCH_X_SITE=
95 97
96## Next two must come before LD_SWITCH_SYSTEM. 98## This must come before LD_SWITCH_SYSTEM.
97## If needed, a -R option that says where to find X windows at run time. 99## If needed, a -rpath option that says where to find X windows at run time.
98LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@ 100LD_SWITCH_X_SITE_RPATH=@LD_SWITCH_X_SITE_RPATH@
99## As above, but using -rpath instead.
100LD_SWITCH_X_SITE_AUX_RPATH=@LD_SWITCH_X_SITE_AUX_RPATH@
101 101
102## System-specific LDFLAGS. 102## System-specific LDFLAGS.
103LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ 103LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@
@@ -291,7 +291,7 @@ CANNOT_DUMP=@CANNOT_DUMP@
291DEPDIR=deps 291DEPDIR=deps
292## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. 292## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty.
293DEPFLAGS=@DEPFLAGS@ 293DEPFLAGS=@DEPFLAGS@
294## test -d $(DEPDIR) || mkdir $(DEPDIR) (if AUTO_DEPEND); else ':'. 294## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'.
295MKDEPDIR=@MKDEPDIR@ 295MKDEPDIR=@MKDEPDIR@
296 296
297## DO NOT use -R. There is a special hack described in lastfile.c 297## DO NOT use -R. There is a special hack described in lastfile.c
@@ -315,7 +315,7 @@ ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I$(srcdir) \
315 $(SETTINGS_CFLAGS) $(FREETYPE_CFLAGS) $(FONTCONFIG_CFLAGS) \ 315 $(SETTINGS_CFLAGS) $(FREETYPE_CFLAGS) $(FONTCONFIG_CFLAGS) \
316 $(LIBOTF_CFLAGS) $(M17N_FLT_CFLAGS) $(DEPFLAGS) $(PROFILING_CFLAGS) \ 316 $(LIBOTF_CFLAGS) $(M17N_FLT_CFLAGS) $(DEPFLAGS) $(PROFILING_CFLAGS) \
317 $(LIBGNUTLS_CFLAGS) \ 317 $(LIBGNUTLS_CFLAGS) \
318 $(C_WARNINGS_SWITCH) $(CFLAGS) 318 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
319ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS) 319ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS)
320 320
321.SUFFIXES: .m 321.SUFFIXES: .m