diff options
Diffstat (limited to 'applets/Makefile.in')
-rw-r--r-- | applets/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/applets/Makefile.in b/applets/Makefile.in index 511652a93..80b6da0b1 100644 --- a/applets/Makefile.in +++ b/applets/Makefile.in | |||
@@ -10,8 +10,11 @@ APPLETS_DIR:=$(top_builddir)/applets/ | |||
10 | endif | 10 | endif |
11 | srcdir=$(top_srcdir)/applets | 11 | srcdir=$(top_srcdir)/applets |
12 | 12 | ||
13 | APPLET_SRC:=applets.c busybox.c | 13 | APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c) |
14 | APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC)) | 14 | APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC)) |
15 | |||
16 | APPLET_SRC-y+=$(APPLET_SRC) | ||
17 | APPLET_SRC-a+=$(APPLET_SRC) | ||
15 | 18 | ||
16 | libraries-y+=$(APPLETS_DIR)$(APPLETS_AR) | 19 | libraries-y+=$(APPLETS_DIR)$(APPLETS_AR) |
17 | 20 | ||