- revert back to r14406
[oweals/busybox.git] / editors / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under the GPL v2, see the file LICENSE in this tarball.
6
7 EDITOR_AR:=editors.a
8 ifndef $(EDITOR_DIR)
9 EDITOR_DIR:=$(top_builddir)/editors/
10 endif
11 srcdir=$(top_srcdir)/editors
12
13 EDITOR-y:=
14 EDITOR-$(CONFIG_AWK)       += awk.o
15 EDITOR-$(CONFIG_PATCH)     += patch.o
16 EDITOR-$(CONFIG_SED)       += sed.o
17 EDITOR-$(CONFIG_VI)        += vi.o
18
19 ifneq ($(strip $(EDITOR-y)),)
20 libraries-y+=$(EDITOR_DIR)$(EDITOR_AR)
21 endif
22
23 EDITOR_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(EDITOR-y))
24 EDITOR_SRC-a:=$(wildcard $(srcdir)/*.c)
25 APPLET_SRC-y+=$(EDITOR_SRC-y)
26 APPLET_SRC-a+=$(EDITOR_SRC-a)
27
28 needlibm-y:=
29 needlibm-$(CONFIG_FEATURE_AWK_MATH) := y
30
31 ifeq ($(needlibm-y),y)
32   LIBRARIES := -lm $(filter-out -lm,$(LIBRARIES))
33 endif
34
35 $(EDITOR_DIR)$(EDITOR_AR): $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))
36         $(do_ar)
37
38 $(EDITOR_DIR)%.o: $(srcdir)/%.c
39         $(compile.c)