busybox/init/Makefile.in

44 lines
905 B
Makefile
Raw Normal View History

# Makefile for busybox
#
2005-09-24 11:31:57 +05:30
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
#
2005-09-24 11:31:57 +05:30
# Licensed under the GPL v2, see the file LICENSE in this tarball.
2006-03-14 00:34:00 +05:30
INIT_AR:=init.a
ifndef $(INIT_DIR)
INIT_DIR:=$(top_builddir)/init/
endif
srcdir=$(top_srcdir)/init
2006-03-14 00:34:00 +05:30
INIT-y:=
INIT-$(CONFIG_HALT) += halt.o
INIT-$(CONFIG_INIT) += init.o
2002-09-16 09:51:46 +05:30
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
2006-03-14 00:34:00 +05:30
ifneq ($(strip $(INIT-y)),)
libraries-y+=$(INIT_DIR)$(INIT_AR)
endif
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)
2006-03-14 00:34:00 +05:30
$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y))
$(do_ar)
2006-03-14 00:34:00 +05:30
$(INIT_DIR)%.o: $(srcdir)/%.c
$(compile.c)