Makefile revision 957
2363N/A# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2363N/A#
2363N/A# Permission is hereby granted, free of charge, to any person obtaining a
2363N/A# copy of this software and associated documentation files (the "Software"),
2363N/A# to deal in the Software without restriction, including without limitation
2363N/A# the rights to use, copy, modify, merge, publish, distribute, sublicense,
2363N/A# and/or sell copies of the Software, and to permit persons to whom the
2363N/A# Software is furnished to do so, subject to the following conditions:
2363N/A#
2363N/A# The above copyright notice and this permission notice (including the next
2363N/A# paragraph) shall be included in all copies or substantial portions of the
2363N/A# Software.
2363N/A#
2363N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2363N/A# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2363N/A# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2363N/A# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2363N/A# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2363N/A# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2363N/A# DEALINGS IN THE SOFTWARE.
2363N/A#
2363N/A
2363N/ASRCS = hotkey.c
2363N/AOBJS = $(SRCS:.c=.o)
3215N/AREQLIBS = -lsysevent
6238N/AMODULEDIR = /lib/modules
2363N/ADRVDIR = /input
2363N/AINSTDIR = $(DESTDIR)$(PREFIX)$(MODULEDIR)$(DRVDIR)$(ARCHLIBSUBDIR)
2363N/A
2363N/Ahotkey_drv.so: $(OBJS)
2363N/A $(CC) -o $@ $(LDFLAGS) -shared $(OBJS) $(REQLIBS)
2363N/A
6238N/A.c.o:
2363N/A $(CC) -fpic -DPIC $(CFLAGS) $(CPPFLAGS) -c $<
2363N/A
2363N/Ainstall: hotkey_drv.so
2363N/A mkdir -p $(INSTDIR)
2363N/A $(INSTALL) hotkey_drv.so $(INSTDIR)/hotkey_drv.so