Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Mike Frysinger | 0d4ee68 | 2005-09-24 06:01:57 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 4 | # |
Mike Frysinger | 0d4ee68 | 2005-09-24 06:01:57 +0000 | [diff] [blame] | 5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 6 | |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 7 | srcdir:=$(top_srcdir)/shell |
| 8 | objdir:=$(top_builddir)/shell |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 9 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 10 | SHELL-$(CONFIG_ASH) += ash.o |
| 11 | SHELL-$(CONFIG_HUSH) += hush.o |
| 12 | SHELL-$(CONFIG_LASH) += lash.o |
| 13 | SHELL-$(CONFIG_MSH) += msh.o |
| 14 | SHELL-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 15 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 16 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 17 | SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELL-y)) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 18 | SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) |
| 19 | APPLET_SRC-y+=$(SHELLT_SRC-y) |
| 20 | APPLET_SRC-a+=$(SHELLT_SRC-a) |
| 21 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 22 | shell_OBJ:= $(patsubst %,$(objdir)/%,$(SHELL-y)) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 23 | |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 24 | $(shell_OBJ): $(objdir)/%.o: $(srcdir)/%.c |
| 25 | $(objdir)/shell.a: $(shell_OBJ) |
| 26 | libraries-y:=$(libraries-y) $(objdir)/shell.a |
| 27 | |