Fetch the repository succeeded.
This action will force synchronization from OpenHarmony/third_party_toybox, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
# Makefile for toybox.
# Copyright 2006 Rob Landley <rob@landley.net>
# If people set these on the make command line, use 'em
# Note that CC defaults to "cc" so the one in configure doesn't get
# used when scripts/make.sh and care called through "make".
HOSTCC?=cc
export CROSS_COMPILE CFLAGS OPTIMIZE LDOPTIMIZE CC HOSTCC V STRIP
all: toybox
KCONFIG_CONFIG ?= .config
toybox_stuff: $(KCONFIG_CONFIG) *.[ch] lib/*.[ch] toys/*/*.c scripts/*.sh
toybox generated/unstripped/toybox: toybox_stuff
scripts/make.sh
.PHONY: clean distclean baseline bloatcheck install install_flat \
uinstall uninstall_flat tests help toybox_stuff change \
list list_working list_pending root run_root
include kconfig/Makefile
-include .singlemake
$(KCONFIG_CONFIG): $(KCONFIG_TOP)
@if [ -e "$(KCONFIG_CONFIG)" ]; then make silentoldconfig; \
else echo "Not configured (run 'make defconfig' or 'make menuconfig')";\
exit 1; fi
$(KCONFIG_TOP): generated/Config.in generated/Config.probed
generated/Config.probed: generated/Config.in
generated/Config.in: toys/*/*.c scripts/genconfig.sh
scripts/genconfig.sh
# Development targets
baseline: generated/unstripped/toybox
@cp generated/unstripped/toybox generated/unstripped/toybox_old
bloatcheck: generated/unstripped/toybox_old generated/unstripped/toybox
@scripts/bloatcheck generated/unstripped/toybox_old generated/unstripped/toybox
install_flat:
scripts/install.sh --symlink --force
install_airlock:
scripts/install.sh --symlink --force --airlock
install:
scripts/install.sh --long --symlink --force
uninstall_flat:
scripts/install.sh --uninstall
uninstall:
scripts/install.sh --long --uninstall
change:
scripts/change.sh
root_clean:
@rm -rf root
@echo root cleaned
clean::
@rm -rf toybox generated change .singleconfig* cross-log-*.*
@echo cleaned
# If singlemake was in generated/ "make clean; make test_ls" wouldn't work.
distclean: clean root_clean
@rm -f toybox* .config* .singlemake
@echo removed .config
tests:
scripts/test.sh
root:
scripts/mkroot.sh $(MAKEFLAGS)
run_root:
C=$$(basename "$$CROSS_COMPILE" | sed 's/-.*//'); \
cd root/"$${C:-host}" && ./qemu-*.sh $(MAKEFLAGS) || exit 1
help::
@cat scripts/help.txt
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。