blob: 649f2ef325ffb68aaebc75c2b89f1c3a4300b7e2 [file] [log] [blame]
apw3812c032006-12-07 21:01:14 +00001# (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
6HELPERS:=autoboot-helper tickle-helper
7
8install::
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