android_external_toybox/Makefile

70 lines
1.7 KiB
Makefile
Raw Normal View History

# 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
2008-03-27 22:40:57 -07:00
.PHONY: clean distclean baseline bloatcheck install install_flat \
uinstall uninstall_flat tests help toybox_stuff change \
list list_working list_pending
include kconfig/Makefile
-include .singlemake
$(KCONFIG_CONFIG): $(KCONFIG_TOP)
$(KCONFIG_TOP): 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
2007-01-31 11:18:05 -08:00
uninstall_flat:
2008-03-27 22:40:57 -07:00
scripts/install.sh --uninstall
uninstall:
scripts/install.sh --long --uninstall
2015-02-07 15:19:38 -08:00
change:
scripts/change.sh
clean::
rm -rf toybox generated change .singleconfig*
# If singlemake was in generated/ "make clean; make test_ls" wouldn't work.
distclean: clean
rm -f toybox_old .config* .singlemake
tests:
scripts/test.sh
help::
2018-01-10 08:54:11 -08:00
@cat scripts/help.txt