diff options
| author | Joakim Verona | 2012-05-21 00:37:29 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-05-21 00:37:29 +0200 |
| commit | 74f082445c1dd0c92d5bb187db0d50287e3a7bae (patch) | |
| tree | 48e3d8fd9df3876665654eab9bcf96ec492a31e9 /src/Makefile.in | |
| parent | 52862ad482e030e4d54cd7d6e250d76e59ee0554 (diff) | |
| parent | 1b170bc63c2f3a3fbe6ba6996d5a015e82634909 (diff) | |
| download | emacs-74f082445c1dd0c92d5bb187db0d50287e3a7bae.tar.gz emacs-74f082445c1dd0c92d5bb187db0d50287e3a7bae.zip | |
upstream, fix conflicts
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 16 |
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@ |
| 43 | MKDIR_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@ | |||
| 68 | PROFILING_CFLAGS = @PROFILING_CFLAGS@ | 69 | PROFILING_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 |
| 71 | C_WARNINGS_SWITCH = @C_WARNINGS_SWITCH@ | 72 | WARN_CFLAGS = @WARN_CFLAGS@ |
| 73 | WERROR_CFLAGS = @WERROR_CFLAGS@ | ||
| 72 | 74 | ||
| 73 | ## Machine-specific CFLAGS. | 75 | ## Machine-specific CFLAGS. |
| 74 | C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ | 76 | C_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. |
| 94 | LD_SWITCH_X_SITE= | 96 | LD_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. |
| 98 | LD_SWITCH_X_SITE_AUX=@LD_SWITCH_X_SITE_AUX@ | 100 | LD_SWITCH_X_SITE_RPATH=@LD_SWITCH_X_SITE_RPATH@ |
| 99 | ## As above, but using -rpath instead. | ||
| 100 | LD_SWITCH_X_SITE_AUX_RPATH=@LD_SWITCH_X_SITE_AUX_RPATH@ | ||
| 101 | 101 | ||
| 102 | ## System-specific LDFLAGS. | 102 | ## System-specific LDFLAGS. |
| 103 | LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ | 103 | LD_SWITCH_SYSTEM=@LD_SWITCH_SYSTEM@ |
| @@ -291,7 +291,7 @@ CANNOT_DUMP=@CANNOT_DUMP@ | |||
| 291 | DEPDIR=deps | 291 | DEPDIR=deps |
| 292 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. | 292 | ## -MMD -MF $(DEPDIR)/$*.d if AUTO_DEPEND; else empty. |
| 293 | DEPFLAGS=@DEPFLAGS@ | 293 | DEPFLAGS=@DEPFLAGS@ |
| 294 | ## test -d $(DEPDIR) || mkdir $(DEPDIR) (if AUTO_DEPEND); else ':'. | 294 | ## ${MKDIR_P} ${DEPDIR} (if AUTO_DEPEND); else ':'. |
| 295 | MKDEPDIR=@MKDEPDIR@ | 295 | MKDEPDIR=@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) |
| 319 | ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS) | 319 | ALL_OBJC_CFLAGS=$(ALL_CFLAGS) $(GNU_OBJC_CFLAGS) |
| 320 | 320 | ||
| 321 | .SUFFIXES: .m | 321 | .SUFFIXES: .m |