hush/init/Makefile.in

33 lines
714 B
Makefile
Raw Normal View History

# Makefile for busybox
#
2005-09-24 06:01:57 +00:00
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
#
2005-09-24 06:01:57 +00:00
# Licensed under the GPL v2, see the file LICENSE in this tarball.
srcdir=$(top_srcdir)/init
objdir=$(top_builddir)/init
INIT-$(CONFIG_HALT) += halt.o
INIT-$(CONFIG_INIT) += init.o
2002-09-16 04:21:46 +00:00
INIT-$(CONFIG_MESG) += mesg.o
ifeq ($(strip $(CONFIG_HALT)),y)
CONFIG_INIT_SHARED=y
else
ifeq ($(strip $(CONFIG_INIT)),y)
CONFIG_INIT_SHARED=y
else
CONFIG_INIT_SHARED=n
endif
endif
INIT-$(CONFIG_INIT_SHARED) += init_shared.o
INIT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(INIT-y))
INIT_SRC-a:=$(wildcard $(srcdir)/*.c)
APPLET_SRC-y+=$(INIT_SRC-y)
APPLET_SRC-a+=$(INIT_SRC-a)
init_OBJ:= $(patsubst %,$(objdir)/%,$(INIT-y))