mirror of
https://github.com/sheumann/hush.git
synced 2024-11-02 17:05:18 +00:00
0ef64bdb40
This change retains "or later" state! No licensing _changes_ here, only form is adjusted (article, space between "GPL" and "v2" and so on). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
17 lines
563 B
Plaintext
17 lines
563 B
Plaintext
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
|
|
|
lib-y:=
|
|
|
|
INSERT
|
|
lib-$(CONFIG_MODPROBE_SMALL) += modprobe-small.o
|
|
lib-$(CONFIG_DEPMOD) += depmod.o modutils.o
|
|
lib-$(CONFIG_INSMOD) += insmod.o modutils.o
|
|
lib-$(CONFIG_LSMOD) += lsmod.o modutils.o
|
|
lib-$(CONFIG_MODPROBE) += modprobe.o modutils.o
|
|
lib-$(CONFIG_RMMOD) += rmmod.o modutils.o
|
|
lib-$(CONFIG_FEATURE_2_4_MODULES) += modutils-24.o
|