summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-01-26 14:13:24 +0800
committerPo Lu <luangruo@yahoo.com>2023-01-26 14:13:24 +0800
commit8125e26a323cb8906a14005519b0fa5693718c90 (patch)
tree449973c9c8e06505e7748cda785cccc772050bde /cross
parent0b1ef9ea31ce039001546b3ed34494332e5e3629 (diff)
downloademacs-8125e26a323cb8906a14005519b0fa5693718c90.tar.gz
Remove unused file
* cross/ndk-build/ndk-build.in: Delete unused file.
Diffstat (limited to 'cross')
-rw-r--r--cross/ndk-build/ndk-build.in44
1 files changed, 0 insertions, 44 deletions
diff --git a/cross/ndk-build/ndk-build.in b/cross/ndk-build/ndk-build.in
deleted file mode 100644
index 8586b90d840..00000000000
--- a/cross/ndk-build/ndk-build.in
+++ /dev/null
@@ -1,44 +0,0 @@
-### @configure_input@
-
-# Copyright (C) 2023 Free Software Foundation, Inc.
-
-# This file is part of GNU Emacs.
-
-# GNU Emacs is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# GNU Emacs is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
-
-# This file is included all over the place to build prerequisites.
-
-NDK_BUILD_MODULES = @NDK_BUILD_MODULES@
-NDK_BUILD_SHARED =
-NDK_BUILD_STATIC =
-
-define subr-1
-
-.PHONY $(top_builddir)/cross/ndk-build/$(0)
-$(top_builddir)/cross/ndk-build/$(0):
- $(MAKE) -C $(top_builddir)/cross/ndk-build $(0)
-
-ifeq ($(suffix $(0)),.so)
-NDK_BUILD_SHARED += $(top_builddir)/cross/ndk-build/$(0)
-else
-ifeq ($(suffix $(0)),.a)
-NDK_BUILD_STATIC += $(top_builddir)/cross/ndk-build/$(0)
-endif
-endif
-
-endef
-
-# Generate rules for each module.
-
-$(foreach module,$(NDK_BUILD_MODULES),$(eval $(call subr-1,$(module))))