|
Revision 5595, 0.8 KB
(checked in by khali, 3 years ago)
|
|
Delete the decode-xeon script. It was essentially unmaintained, was
never updated to support Linux 2.6, and lacked a license statement.
|
| Line | |
|---|
| 1 | # EEPROM decoding scripts for the Linux eeprom driver |
|---|
| 2 | # |
|---|
| 3 | # Copyright (C) 2007-2008 Jean Delvare <khali@linux-fr.org> |
|---|
| 4 | # |
|---|
| 5 | # This program is free software; you can redistribute it and/or modify |
|---|
| 6 | # it under the terms of the GNU General Public License as published by |
|---|
| 7 | # the Free Software Foundation; either version 2 of the License, or |
|---|
| 8 | # (at your option) any later version. |
|---|
| 9 | |
|---|
| 10 | EEPROM_DIR := eeprom |
|---|
| 11 | |
|---|
| 12 | EEPROM_TARGETS := decode-dimms decode-vaio ddcmon decode-edid |
|---|
| 13 | |
|---|
| 14 | # |
|---|
| 15 | # Commands |
|---|
| 16 | # |
|---|
| 17 | |
|---|
| 18 | install-eeprom: $(addprefix $(EEPROM_DIR)/,$(EEPROM_TARGETS)) |
|---|
| 19 | $(INSTALL_DIR) $(DESTDIR)$(bindir) |
|---|
| 20 | for program in $(EEPROM_TARGETS) ; do \ |
|---|
| 21 | $(INSTALL_PROGRAM) $(EEPROM_DIR)/$$program $(DESTDIR)$(bindir) ; done |
|---|
| 22 | |
|---|
| 23 | uninstall-eeprom: |
|---|
| 24 | for program in $(EEPROM_TARGETS) ; do \ |
|---|
| 25 | $(RM) $(DESTDIR)$(bindir)/$$program ; done |
|---|
| 26 | |
|---|
| 27 | install: install-eeprom |
|---|
| 28 | |
|---|
| 29 | uninstall: uninstall-eeprom |
|---|