A missing securetty file is not an error.
[oweals/busybox.git] / editors / Makefile.in
index 88c75890f96e3354e1d6aa7ebfa3a563b8992289..f4f604e6a6a78765815654299efa86acdad1ab75 100644 (file)
@@ -23,6 +23,7 @@ EDITOR_DIR:=$(TOPDIR)editors/
 endif
 
 EDITOR-y:=
+EDITOR-$(CONFIG_AWK)      += awk.o
 EDITOR-$(CONFIG_SED)       += sed.o
 EDITOR-$(CONFIG_VI)        += vi.o
 EDITOR_SRC:= $(EDITOR-y)
@@ -30,6 +31,13 @@ EDITOR_OBJ:= $(patsubst %.c,$(EDITOR_DIR)%.o, $(EDITOR_SRC))
 
 libraries-y+=$(EDITOR_DIR)$(EDITOR_AR)
 
+needlibm-y:=
+needlibm-$(CONFIG_FEATURE_AWK_MATH) := y
+
+ifeq ($(needlibm-y),y)
+  LIBRARIES += -lm
+endif
+
 $(EDITOR_DIR)$(EDITOR_AR): $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))
        $(AR) -ro $@ $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))