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/eeprom/Module.mk
Normal file
29
Script/i2c-tools-3.1.0/eeprom/Module.mk
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# EEPROM decoding scripts for the Linux eeprom driver
|
||||
#
|
||||
# Copyright (C) 2007-2008 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.
|
||||
|
||||
EEPROM_DIR := eeprom
|
||||
|
||||
EEPROM_TARGETS := decode-dimms decode-vaio ddcmon decode-edid
|
||||
|
||||
#
|
||||
# Commands
|
||||
#
|
||||
|
||||
install-eeprom: $(addprefix $(EEPROM_DIR)/,$(EEPROM_TARGETS))
|
||||
$(INSTALL_DIR) $(DESTDIR)$(bindir)
|
||||
for program in $(EEPROM_TARGETS) ; do \
|
||||
$(INSTALL_PROGRAM) $(EEPROM_DIR)/$$program $(DESTDIR)$(bindir) ; done
|
||||
|
||||
uninstall-eeprom:
|
||||
for program in $(EEPROM_TARGETS) ; do \
|
||||
$(RM) $(DESTDIR)$(bindir)/$$program ; done
|
||||
|
||||
install: install-eeprom
|
||||
|
||||
uninstall: uninstall-eeprom
|
||||
Loading…
Add table
Add a link
Reference in a new issue