xref: /rk3399_rockchip-uboot/drivers/input/Makefile (revision 16b195c82a18cbfd164800f17a1ef9db2e48331a)
1*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
2*16b195c8SJean-Christophe PLAGNIOL-VILLARD# (C) Copyright 2000-2007
3*16b195c8SJean-Christophe PLAGNIOL-VILLARD# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
5*16b195c8SJean-Christophe PLAGNIOL-VILLARD# See file CREDITS for list of people who contributed to this
6*16b195c8SJean-Christophe PLAGNIOL-VILLARD# project.
7*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
8*16b195c8SJean-Christophe PLAGNIOL-VILLARD# This program is free software; you can redistribute it and/or
9*16b195c8SJean-Christophe PLAGNIOL-VILLARD# modify it under the terms of the GNU General Public License as
10*16b195c8SJean-Christophe PLAGNIOL-VILLARD# published by the Free Software Foundation; either version 2 of
11*16b195c8SJean-Christophe PLAGNIOL-VILLARD# the License, or (at your option) any later version.
12*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
13*16b195c8SJean-Christophe PLAGNIOL-VILLARD# This program is distributed in the hope that it will be useful,
14*16b195c8SJean-Christophe PLAGNIOL-VILLARD# but WITHOUT ANY WARRANTY; without even the implied warranty of
15*16b195c8SJean-Christophe PLAGNIOL-VILLARD# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
16*16b195c8SJean-Christophe PLAGNIOL-VILLARD# GNU General Public License for more details.
17*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
18*16b195c8SJean-Christophe PLAGNIOL-VILLARD# You should have received a copy of the GNU General Public License
19*16b195c8SJean-Christophe PLAGNIOL-VILLARD# along with this program; if not, write to the Free Software
20*16b195c8SJean-Christophe PLAGNIOL-VILLARD# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*16b195c8SJean-Christophe PLAGNIOL-VILLARD# MA 02111-1307 USA
22*16b195c8SJean-Christophe PLAGNIOL-VILLARD#
23*16b195c8SJean-Christophe PLAGNIOL-VILLARD
24*16b195c8SJean-Christophe PLAGNIOL-VILLARDinclude $(TOPDIR)/config.mk
25*16b195c8SJean-Christophe PLAGNIOL-VILLARD
26*16b195c8SJean-Christophe PLAGNIOL-VILLARDLIB 	:= $(obj)libinput.a
27*16b195c8SJean-Christophe PLAGNIOL-VILLARD
28*16b195c8SJean-Christophe PLAGNIOL-VILLARDCOBJS-y += i8042.o
29*16b195c8SJean-Christophe PLAGNIOL-VILLARDCOBJS-y += keyboard.o
30*16b195c8SJean-Christophe PLAGNIOL-VILLARDCOBJS-y += pc_keyb.o ps2ser.o ps2mult.o
31*16b195c8SJean-Christophe PLAGNIOL-VILLARD
32*16b195c8SJean-Christophe PLAGNIOL-VILLARDCOBJS	:= $(COBJS-y)
33*16b195c8SJean-Christophe PLAGNIOL-VILLARDSRCS 	:= $(COBJS:.o=.c)
34*16b195c8SJean-Christophe PLAGNIOL-VILLARDOBJS 	:= $(addprefix $(obj),$(COBJS))
35*16b195c8SJean-Christophe PLAGNIOL-VILLARD
36*16b195c8SJean-Christophe PLAGNIOL-VILLARDall:	$(LIB)
37*16b195c8SJean-Christophe PLAGNIOL-VILLARD
38*16b195c8SJean-Christophe PLAGNIOL-VILLARD$(LIB):	$(obj).depend $(OBJS)
39*16b195c8SJean-Christophe PLAGNIOL-VILLARD	$(AR) $(ARFLAGS) $@ $(OBJS)
40*16b195c8SJean-Christophe PLAGNIOL-VILLARD
41*16b195c8SJean-Christophe PLAGNIOL-VILLARD#########################################################################
42*16b195c8SJean-Christophe PLAGNIOL-VILLARD
43*16b195c8SJean-Christophe PLAGNIOL-VILLARD# defines $(obj).depend target
44*16b195c8SJean-Christophe PLAGNIOL-VILLARDinclude $(SRCTREE)/rules.mk
45*16b195c8SJean-Christophe PLAGNIOL-VILLARD
46*16b195c8SJean-Christophe PLAGNIOL-VILLARDsinclude $(obj).depend
47*16b195c8SJean-Christophe PLAGNIOL-VILLARD
48*16b195c8SJean-Christophe PLAGNIOL-VILLARD#########################################################################
49