diff options
author | Roy Marples <roy@marples.name> | 2008-01-11 11:25:40 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-11 11:25:40 +0000 |
commit | cbc174bbbf0121d325b428c1b681ad0fa1970cc8 (patch) | |
tree | d361dab51776399d2550ddc5a467801283e4c79f /etc.BSD/Makefile | |
parent | 13c552c3ece84b0d4e3b8e24eaa6b7196019b957 (diff) |
Use a specific default terminal for rc
Diffstat (limited to 'etc.BSD/Makefile')
-rw-r--r-- | etc.BSD/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/etc.BSD/Makefile b/etc.BSD/Makefile index cb466dc0..ef4d783c 100644 --- a/etc.BSD/Makefile +++ b/etc.BSD/Makefile @@ -1,5 +1,14 @@ -DIR= /etc -CONF= $(CONTENTS) +DIR= /etc +SRCS= rc.in +OBJS= ${SRCS:.in=} +CONF= rc.shutdown ${OBJS} -MK= ../mk + +MK= ../mk include ${MK}/scripts.mk +include Makefile.${OS} + +.SUFFIXES: .in +.in: + sed -e s':@TERM@:${DEFTERM}:' $< > $@ + |