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
		
			
				
	
	
		
			23 lines
		
	
	
		
			338 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			338 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for terminal driver (TTY)
 | 
						|
 | 
						|
PROG=	tty
 | 
						|
 | 
						|
.include "arch/${MACHINE_ARCH}/Makefile.inc"
 | 
						|
 | 
						|
SRCS +=	tty.c pty.c
 | 
						|
 | 
						|
DPADD+=	${LIBSYS} ${LIBTIMERS}
 | 
						|
LDADD+=	-lsys -ltimers
 | 
						|
 | 
						|
MAN=
 | 
						|
 | 
						|
BINDIR?= /usr/sbin
 | 
						|
 | 
						|
SUBDIR= keymaps
 | 
						|
 | 
						|
# Needs kernel/const.h, etc
 | 
						|
CPPFLAGS+=	-I${.CURDIR}	-I${NETBSDSRCDIR}
 | 
						|
 | 
						|
.include <minix.service.mk>
 | 
						|
.include <bsd.subdir.mk>
 |