diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/editors/Makefile.in b/editors/Makefile.in index 01fb8b527..114d6200d 100644 --- a/editors/Makefile.in +++ b/editors/Makefile.in | |||
@@ -15,16 +15,19 @@ EDITOR-$(CONFIG_AWK) += awk.o | |||
15 | EDITOR-$(CONFIG_PATCH) += patch.o | 15 | EDITOR-$(CONFIG_PATCH) += patch.o |
16 | EDITOR-$(CONFIG_SED) += sed.o | 16 | EDITOR-$(CONFIG_SED) += sed.o |
17 | EDITOR-$(CONFIG_VI) += vi.o | 17 | EDITOR-$(CONFIG_VI) += vi.o |
18 | EDITOR_SRC:= $(EDITOR-y) | ||
19 | EDITOR_OBJ:= $(patsubst %.c,$(EDITOR_DIR)%.o, $(EDITOR_SRC)) | ||
20 | 18 | ||
21 | libraries-y+=$(EDITOR_DIR)$(EDITOR_AR) | 19 | libraries-y+=$(EDITOR_DIR)$(EDITOR_AR) |
22 | 20 | ||
21 | EDITOR_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(EDITOR-y)) | ||
22 | EDITOR_SRC-a:=$(wildcard $(srcdir)/*.c) | ||
23 | APPLET_SRC-y+=$(EDITOR_SRC-y) | ||
24 | APPLET_SRC-a+=$(EDITOR_SRC-a) | ||
25 | |||
23 | needlibm-y:= | 26 | needlibm-y:= |
24 | needlibm-$(CONFIG_FEATURE_AWK_MATH) := y | 27 | needlibm-$(CONFIG_FEATURE_AWK_MATH) := y |
25 | 28 | ||
26 | ifeq ($(needlibm-y),y) | 29 | ifeq ($(needlibm-y),y) |
27 | LIBRARIES += -lm | 30 | LIBRARIES := -lm $(filter-out -lm,$(LIBRARIES)) |
28 | endif | 31 | endif |
29 | 32 | ||
30 | $(EDITOR_DIR)$(EDITOR_AR): $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y)) | 33 | $(EDITOR_DIR)$(EDITOR_AR): $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y)) |