mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
24e54a65f6
Change all of the builds to use $(MAKE) instead of the /usr/bin/make. Download and build GNU make-4.2 if the wrong version is installed on the system. Re-invoke build/make-4.2/make with the target that was passed in once the correct make has been built.
19 lines
512 B
Plaintext
19 lines
512 B
Plaintext
modules += busybox
|
|
|
|
busybox_version := 1.25.0
|
|
busybox_dir := busybox-$(busybox_version)
|
|
busybox_tar := busybox-$(busybox_version).tar.bz2
|
|
busybox_url := https://busybox.net/downloads/$(busybox_tar)
|
|
busybox_hash := 5a0fe06885ee1b805fb459ab6aaa023fe4f2eccee4fb8c0fd9a6c17c0daca2fc
|
|
|
|
busybox_configure := $(MAKE) CC=$(heads_cc) oldconfig
|
|
busybox_config := busybox.config
|
|
busybox_output := busybox
|
|
busybox_target := \
|
|
CC="$(heads_cc)" \
|
|
CONFIG_PREFIX="$(INSTALL)" \
|
|
-j 8 \
|
|
install
|
|
|
|
busybox_depends := $(musl_dep)
|