diff options
Diffstat (limited to 'java')
| -rw-r--r-- | java/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/Makefile.in b/java/Makefile.in index b5ab58fe576..4e137157b69 100644 --- a/java/Makefile.in +++ b/java/Makefile.in | |||
| @@ -124,7 +124,8 @@ CROSS_LIBSRC_BINS := $(top_builddir)/cross/lib-src/ctags \ | |||
| 124 | $(top_builddir)/cross/lib-src/emacsclient \ | 124 | $(top_builddir)/cross/lib-src/emacsclient \ |
| 125 | $(top_builddir)/cross/lib-src/etags | 125 | $(top_builddir)/cross/lib-src/etags |
| 126 | CROSS_LIBSRC_BINS_MOVEMAIL := $(top_builddir)/cross/lib-src/movemail | 126 | CROSS_LIBSRC_BINS_MOVEMAIL := $(top_builddir)/cross/lib-src/movemail |
| 127 | CROSS_BINS = $(CROSS_SRC_BINS) $(CROSS_LIBSRC_BINS) | 127 | CROSS_EXEC_BINS := $(top_builddir)/exec/exec1 $(top_builddir)/exec/loader |
| 128 | CROSS_BINS = $(CROSS_SRC_BINS) $(CROSS_LIBSRC_BINS) $(CROSS_EXEC_BINS) | ||
| 128 | 129 | ||
| 129 | ifneq ($(emacs_use_mailutils),yes) | 130 | ifneq ($(emacs_use_mailutils),yes) |
| 130 | CROSS_LIBSRC_BINS := $(CROSS_LIBSRC_BINS) $(CROSS_LIBSRC_BINS_MOVEMAIL) | 131 | CROSS_LIBSRC_BINS := $(CROSS_LIBSRC_BINS) $(CROSS_LIBSRC_BINS_MOVEMAIL) |
| @@ -159,6 +160,12 @@ $(CROSS_LIBSRC_BINS) &: $(CROSS_ARCHIVES) | |||
| 159 | $(CROSS_ARCHIVES): | 160 | $(CROSS_ARCHIVES): |
| 160 | $(MAKE) -C $(top_builddir)/cross lib/libgnu.a | 161 | $(MAKE) -C $(top_builddir)/cross lib/libgnu.a |
| 161 | 162 | ||
| 163 | # These two binaries are helpers used to execute binaries on Android | ||
| 164 | # 10 and later. | ||
| 165 | |||
| 166 | $(CROSS_EXEC_BINS) &: | ||
| 167 | $(MAKE) -C $(top_builddir)/exec $(notdir $(CROSS_EXEC_BINS)) | ||
| 168 | |||
| 162 | # This is needed to generate the ``.directory-tree'' file used by the | 169 | # This is needed to generate the ``.directory-tree'' file used by the |
| 163 | # Android emulations of readdir and faccessat. | 170 | # Android emulations of readdir and faccessat. |
| 164 | 171 | ||