X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=drivers%2Finput%2FMakefile;h=68c6a16bcc2a099485d7e83fcf0d21788c79a00d;hp=9a144073999d71ef9b6a16bc9dc969c6bdef27f8;hb=6e2fbdea1b26d75314d87c380a36b0015bf824cf;hpb=2fd0aad443c966ce62008225e57b18e2dcf4e330 diff --git a/drivers/input/Makefile b/drivers/input/Makefile index 9a14407399..68c6a16bcc 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -23,13 +23,16 @@ include $(TOPDIR)/config.mk -LIB := $(obj)libinput.a +LIB := $(obj)libinput.o COBJS-$(CONFIG_I8042_KBD) += i8042.o +COBJS-$(CONFIG_TEGRA20_KEYBOARD) += tegra-kbc.o ifdef CONFIG_PS2KBD COBJS-y += keyboard.o pc_keyb.o COBJS-$(CONFIG_PS2MULT) += ps2mult.o ps2ser.o endif +COBJS-y += input.o +COBJS-$(CONFIG_OF_CONTROL) += key_matrix.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) @@ -38,7 +41,7 @@ OBJS := $(addprefix $(obj),$(COBJS)) all: $(LIB) $(LIB): $(obj).depend $(OBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) + $(call cmd_link_o_target, $(OBJS)) #########################################################################