openrc/doc/Makefile

28 lines
372 B
Makefile
Raw Normal View History

2008-02-01 18:54:09 +05:30
DIR= ${DOCDIR}/openrc
INC= net.example
MK= ../mk
2008-03-26 19:29:06 +05:30
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