diff options
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}:' $< > $@ + |