File: module.mk

package info (click to toggle)
conmux 0.12.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: exp: 1,772; perl: 1,361; python: 202; sh: 124; makefile: 52
file content (14 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# (C) Copyright IBM Corp. 2004, 2005, 2006
# Author: Andy Whitcroft <andyw@uk.ibm.com>
#
# The Console Multiplexor is released under the GNU Public License V2

HELPERS:=autoboot-helper tickle-helper

install::
	@[ -d $(BASE)/lib/helpers ] || mkdir $(BASE)/lib/helpers
	for f in $(HELPERS); do \
	    rm -f $(BASE)/lib/helpers/$$f; \
	    cp -p helpers/$$f $(BASE)/lib/helpers/$$f; \
	    chmod 755 $(BASE)/lib/helpers/$$f; \
	done