mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
The top-level doesn't handle correctly the build dependencies
between .o files.
Since hans doesn't take too many time to build, just use MAKE1.
Fixes:
http://autobuild.buildroot.net/results/d14/d142f4a439d4d5fcc89865abde3e593c45ad5d96
http://autobuild.buildroot.net/results/28e/28ed230e40cc154db9274f9765085cd7f0eee85a
http://autobuild.buildroot.net/results/900/9008c3be3bcf46f0fc21a34f48e3cf9da1397d9a
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
(cherry picked from commit 17aa47fa2c)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
552 B
Makefile
21 lines
552 B
Makefile
################################################################################
|
|
#
|
|
# hans
|
|
#
|
|
################################################################################
|
|
|
|
HANS_VERSION = 0.4.4
|
|
HANS_SITE = http://downloads.sourceforge.net/project/hanstunnel/source
|
|
HANS_LICENSE = GPLv3+
|
|
HANS_LICENSE_FILES = LICENSE
|
|
|
|
define HANS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE1) GCC="$(TARGET_CC)" GPP="$(TARGET_CXX)" -C $(@D)
|
|
endef
|
|
|
|
define HANS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 -D $(@D)/hans $(TARGET_DIR)/usr/sbin/hans
|
|
endef
|
|
|
|
$(eval $(generic-package))
|