3ea2e82dc7
function old new delta next_random - 46 +46 ash_main 1361 1356 -5 change_random 132 97 -35 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/2 up/down: 46/-40) Total: 6 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
15 lines
427 B
Makefile
15 lines
427 B
Makefile
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
|
|
|
lib-y:=
|
|
lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o
|
|
lib-$(CONFIG_HUSH) += hush.o match.o
|
|
lib-$(CONFIG_CTTYHACK) += cttyhack.o
|
|
|
|
lib-$(CONFIG_SH_MATH_SUPPORT) += math.o
|
|
lib-$(CONFIG_ASH_RANDOM_SUPPORT) += random.o
|
|
lib-$(CONFIG_HUSH_RANDOM_SUPPORT) += random.o
|