openrc/doc/Makefile

28 lines
372 B
Makefile
Raw Normal View History

2008-02-01 13:24:09 +00:00
DIR= ${DOCDIR}/openrc
INC= net.example
MK= ../mk
2008-03-26 13:59:06 +00:00
include ${MK}/os.mk
ifeq ($(OS),FreeBSD)
SRCS+= net.example.in
.SUFFIXES: .BSD.in
.BSD.in:
${CP} $< $@
else ifeq ($(OS),Linux)
SRCS+= net.example.in
.SUFFIXES: .Linux.in
.Linux.in:
${CP} $< $@
else ifeq ($(OS),NetBSD)
SRCS+= net.example.in
.SUFFIXES: .BSD.in
.BSD.in:
${CP} $< $@
endif
include ${MK}/scripts.mk