aboutsummaryrefslogtreecommitdiff
path: root/console-tools/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'console-tools/Makefile.in')
-rw-r--r--console-tools/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/console-tools/Makefile.in b/console-tools/Makefile.in
index 1d756c721..b19ce5cb2 100644
--- a/console-tools/Makefile.in
+++ b/console-tools/Makefile.in
@@ -19,8 +19,9 @@
19 19
20CONSOLETOOLS_AR:=console-tools.a 20CONSOLETOOLS_AR:=console-tools.a
21ifndef $(CONSOLETOOLS_DIR) 21ifndef $(CONSOLETOOLS_DIR)
22CONSOLETOOLS_DIR:=$(TOPDIR)console-tools/ 22CONSOLETOOLS_DIR:=$(top_builddir)/console-tools/
23endif 23endif
24srcdir=$(top_srcdir)/console-tools
24 25
25CONSOLETOOLS_DIR-y:= 26CONSOLETOOLS_DIR-y:=
26CONSOLETOOLS_DIR-$(CONFIG_CHVT) += chvt.o 27CONSOLETOOLS_DIR-$(CONFIG_CHVT) += chvt.o
@@ -38,3 +39,6 @@ libraries-y+=$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR)
38$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) 39$(CONSOLETOOLS_DIR)$(CONSOLETOOLS_AR): $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y))
39 $(AR) -ro $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y)) 40 $(AR) -ro $@ $(patsubst %,$(CONSOLETOOLS_DIR)%, $(CONSOLETOOLS_DIR-y))
40 41
42$(CONSOLETOOLS_DIR)%.o: $(srcdir)/%.c
43 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
44