8f3fbf7cc1
The build system distinction between "bootprog" and "service" is meaningless as boot programs are standard services. As minix.service.mk simply imports minix.bootprog.mk, reduce confusion by removing minix.bootprog.mk and placing the rules in minix.service.mk. Change-Id: I4056b1e574bed59a8c890239b41b1a7c7cad63e8
16 lines
272 B
Makefile
16 lines
272 B
Makefile
# Makefile for Pipe File System (PFS)
|
|
PROG= pfs
|
|
SRCS= open.c table.c inode.c main.c super.c link.c \
|
|
buffer.c read.c misc.c mount.c utility.c stadir.c \
|
|
uds.c dev_uds.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
LDADD+= -lc
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|