hush/shell/Makefile.in

34 lines
823 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.
2006-03-13 19:04:00 +00:00
SHELL_AR:=shell.a
ifndef $(SHELL_DIR)
SHELL_DIR:=$(top_builddir)/shell/
endif
srcdir=$(top_srcdir)/shell
2006-03-13 19:04:00 +00:00
SHELLT-y:=
SHELLT-$(CONFIG_ASH) += ash.o
SHELLT-$(CONFIG_HUSH) += hush.o
SHELLT-$(CONFIG_LASH) += lash.o
SHELLT-$(CONFIG_MSH) += msh.o
SHELLT-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o
2006-03-13 19:04:00 +00:00
ifneq ($(strip $(SHELLT-y)),)
libraries-y+=$(SHELL_DIR)$(SHELL_AR)
endif
2006-03-13 19:04:00 +00:00
SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELLT-y))
SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c)
APPLET_SRC-y+=$(SHELLT_SRC-y)
APPLET_SRC-a+=$(SHELLT_SRC-a)
2006-03-13 19:04:00 +00:00
$(SHELL_DIR)$(SHELL_AR): $(patsubst %,$(SHELL_DIR)%, $(SHELLT-y))
$(do_ar)
2006-03-13 19:04:00 +00:00
$(SHELL_DIR)%.o: $(srcdir)/%.c
$(compile.c)