 afe5cecd7f
			
		
	
	
		afe5cecd7f
		
	
	
	
	
		
			
			This implements a near noop setpgid, unless the use is one equivalent to setsid, in which case it will behave as such. Also activates setpgrp, which is implemented in terms of setpgid. Change-Id: I84411cb1957351aa1d3985623cd9e69bdf6f8d4c
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PATH:	${.CURDIR}/sys-minix
 | |
| 
 | |
| SRCS+= 	accept.c access.c adjtime.c bind.c brk.c sbrk.c m_closefrom.c getsid.c \
 | |
| 	chdir.c chmod.c fchmod.c chown.c fchown.c chroot.c close.c \
 | |
| 	clock_getres.c clock_gettime.c clock_settime.c \
 | |
| 	connect.c dup.c dup2.c execve.c fcntl.c flock.c fpathconf.c fork.c \
 | |
| 	fstatfs.c fstatvfs.c fsync.c ftruncate.c gcov_flush.c getdents.c \
 | |
| 	getegid.c getgid.c \
 | |
| 	getgroups.c getitimer.c setitimer.c __getlogin.c getpeername.c \
 | |
| 	getpgrp.c getpid.c getppid.c priority.c getrlimit.c getsockname.c \
 | |
| 	getsockopt.c setsockopt.c gettimeofday.c geteuid.c getuid.c \
 | |
| 	getvfsstat.c \
 | |
| 	ioctl.c issetugid.c kill.c link.c listen.c loadname.c lseek.c \
 | |
| 	minix_rs.c mkdir.c mkfifo.c mknod.c mmap.c mount.c nanosleep.c \
 | |
| 	open.c pathconf.c pipe.c poll.c pread.c ptrace.c pwrite.c \
 | |
| 	read.c readlink.c reboot.c recvfrom.c recvmsg.c rename.c \
 | |
| 	rmdir.c select.c sem.c sendmsg.c sendto.c setgroups.c setsid.c \
 | |
| 	setgid.c settimeofday.c setuid.c shmat.c shmctl.c shmget.c stime.c \
 | |
| 	vectorio.c shutdown.c sigaction.c sigpending.c sigreturn.c sigsuspend.c\
 | |
| 	sigprocmask.c socket.c socketpair.c stat.c statvfs.c svrctl.c \
 | |
| 	symlink.c \
 | |
| 	sync.c syscall.c sysuname.c truncate.c umask.c unlink.c write.c \
 | |
| 	utimensat.c utimes.c futimes.c lutimes.c futimens.c \
 | |
| 	_exit.c _ucontext.c environ.c __getcwd.c vfork.c sizeup.c init.c \
 | |
| 	getrusage.c setrlimit.c setpgid.c
 | |
| 
 | |
| # Minix specific syscalls / utils.
 | |
| SRCS+= cprofile.c sprofile.c stack_utils.c _mcontext.c
 | |
| 
 | |
| # Emulation for missing lchown/lchmod
 | |
| OBJS+= lchown.o lchmod.o
 | |
| lchown.o lchown.pico lchown.bc: ${NETBSDSRCDIR}/tools/compat/lchown.c
 | |
| lchmod.o lchmod.pico lchmod.bc: ${NETBSDSRCDIR}/tools/compat/lchmod.c
 | |
| 
 | |
| .include "${ARCHDIR}/sys-minix/Makefile.inc"
 |