diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-12-04 20:50:39 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2010-12-04 20:50:39 +0100 |
commit | d6a003a8b50ed3441bfc710bd54534d45adbc263 (patch) | |
tree | 68bc698cfca8cddcd366ab8c41ab509e89f28ef2 /src/Makefile.in | |
parent | 15af15e54912d52e1840a257d0e01593e311b6d5 (diff) | |
download | emacs-d6a003a8b50ed3441bfc710bd54534d45adbc263.tar.gz |
Remove empty machine description files
* configure.in: Remove reference to removed machine description
files and allow $machine and $machfile to be empty. Substitute
M_FILE/S_FILE instead of machfile/opsysfile.
* msdos/sed1v2.inp (M_FILE, S_FILE): Add $(srcdir)/ prefix.
* Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
(S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
* src/m/arm.h, src/m/sh3.h, src/m/xtensa.h: Remove files.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 4d45248b396..61b42f17030 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -54,8 +54,8 @@ lwlibdir = ../lwlib lispdir = ../lisp # Configuration files for .o files to depend on. -M_FILE = $(srcdir)/@machfile@ -S_FILE = $(srcdir)/@opsysfile@ +M_FILE = @M_FILE@ +S_FILE = @S_FILE@ config_h = config.h $(M_FILE) $(S_FILE) bootstrap_exe = $(abs_builddir)/bootstrap-emacs$(EXEEXT) |