first commit
This commit is contained in:
commit
a5a0434432
1126 changed files with 439481 additions and 0 deletions
29
Script/i2c-tools-3.1.0/include/Module.mk
Normal file
29
Script/i2c-tools-3.1.0/include/Module.mk
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Linux I2C header files
|
||||
#
|
||||
# Copyright (C) 2007 Jean Delvare <khali@linux-fr.org>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
INCLUDE_DIR := include
|
||||
|
||||
INCLUDE_TARGETS := linux/i2c-dev.h
|
||||
|
||||
#
|
||||
# Commands
|
||||
#
|
||||
|
||||
install-include: $(addprefix $(INCLUDE_DIR)/,$(INCLUDE_TARGETS))
|
||||
$(INSTALL_DIR) $(DESTDIR)$(incdir)/linux
|
||||
for file in $(INCLUDE_TARGETS) ; do \
|
||||
$(INSTALL_DATA) $(INCLUDE_DIR)/$$file $(DESTDIR)$(incdir)/$$file ; done
|
||||
|
||||
uninstall-include:
|
||||
for file in $(INCLUDE_TARGETS) ; do \
|
||||
$(RM) $(DESTDIR)$(incdir)/$$file ; done
|
||||
|
||||
install: install-include
|
||||
|
||||
uninstall: uninstall-include
|
||||
Loading…
Add table
Add a link
Reference in a new issue