mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
12 lines
266 B
Makefile
12 lines
266 B
Makefile
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||
|
|
||
|
PROG= rbootd
|
||
|
SRCS= bpf.c conf.c parseconf.c rbootd.c rmpproto.c utils.c
|
||
|
MAN8= rbootd.0
|
||
|
|
||
|
afterinstall:
|
||
|
(cd ${.CURDIR}/bootdir && install -c -o ${BINOWN} -g ${BINGRP} \
|
||
|
-m 444 * ${DESTDIR}/usr/mdec/)
|
||
|
|
||
|
.include <bsd.prog.mk>
|