apw | 3812c03 | 2006-12-07 21:01:14 +0000 | [diff] [blame] | 1 | # (C) Copyright IBM Corp. 2004, 2005, 2006 |
2 | # Author: Andy Whitcroft <andyw@uk.ibm.com> | ||||
3 | # | ||||
4 | # The Console Multiplexor is released under the GNU Public License V2 | ||||
5 | |||||
6 | HELPERS:=autoboot-helper tickle-helper | ||||
7 | |||||
8 | install:: | ||||
9 | @[ -d $(BASE)/lib/helpers ] || mkdir $(BASE)/lib/helpers | ||||
10 | for f in $(HELPERS); do \ | ||||
11 | rm -f $(BASE)/lib/helpers/$$f; \ | ||||
12 | cp -p helpers/$$f $(BASE)/lib/helpers/$$f; \ | ||||
13 | chmod 755 $(BASE)/lib/helpers/$$f; \ | ||||
14 | done |