Makefile.inc revision 1.16
1#	$NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $
2#	@(#)Makefile.inc	8.1 (Berkeley) 6/17/93
3
4# sys sources
5.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/sys ${.CURDIR}/sys
6
7# modules with non-default implementations on at least one architecture:
8SRCS+=	Ovfork.S brk.S cerror.S exect.S fork.S pipe.S ptrace.S \
9	sbrk.S setlogin.S sigpending.S sigprocmask.S sigreturn.S \
10	sigsuspend.S syscall.S
11
12# glue to provide compatibility between GCC 1.X and 2.X and for compat
13# with old syscall interfaces.
14SRCS+=	ftruncate.c lseek.c mmap.c semctl.c truncate.c
15
16# modules with default implementations on all architectures:
17ASM=	accept.o access.o acct.o adjtime.o bind.o chdir.o chflags.o chmod.o \
18	chown.o chroot.o close.o connect.o dup.o dup2.o execve.o fchdir.o \
19	fchflags.o fchmod.o fchown.o fcntl.o flock.o fpathconf.o fstat.o \
20	fstatfs.o fsync.o futimes.o getdirentries.o getegid.o geteuid.o \
21	getfh.o getfsstat.o getgid.o getgroups.o getitimer.o getpeername.o \
22	getpgrp.o getpid.o getppid.o getpriority.o getrlimit.o getrusage.o \
23	getsockname.o getsockopt.o gettimeofday.o getuid.o issetugid.o \
24	ioctl.o kill.o \
25	ktrace.o lchown.o lfs_bmapv.o lfs_markv.o lfs_segclean.o lfs_segwait.o \
26	link.o listen.o lstat.o madvise.o mincore.o minherit.o mkdir.o \
27	mkfifo.o mknod.o mlock.o \
28	mount.o mprotect.o msgctl.o msgget.o msgrcv.o msgsnd.o msync.o \
29	munlock.o munmap.o nfssvc.o \
30	ntp_gettime.o ntp_adjtime.o \
31	open.o pathconf.o poll.o profil.o quotactl.o \
32	read.o readlink.o readv.o reboot.o recvfrom.o recvmsg.o rename.o \
33	revoke.o rfork.o \
34	rmdir.o select.o semconfig.o semget.o semop.o sendmsg.o sendto.o \
35	setegid.o seteuid.o setgid.o setgroups.o setitimer.o setpgid.o \
36	setpriority.o setrlimit.o setsid.o setsockopt.o settimeofday.o \
37	setuid.o shmat.o shmctl.o shmdt.o shmget.o shutdown.o sigaction.o \
38	sigaltstack.o socket.o socketpair.o stat.o statfs.o swapon.o \
39	symlink.o sync.o sysarch.o umask.o undelete.o unlink.o unmount.o \
40	utimes.o vadvise.o wait4.o write.o writev.o __semctl.o __syscall.o \
41	__sysctl.o
42
43PASM=	${ASM:.o=.po}
44SASM=	${ASM:.o=.so}
45
46PSEUDO=	_exit.o _getlogin.o
47PPSEUDO=${PSEUDO:.o=.po}
48SPSEUDO=${PSEUDO:.o=.so}
49
50OBJS+=	${ASM} ${PSEUDO}
51
52${PASM}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
53	@echo creating ${.TARGET}
54	@printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' | \
55	    ${CPP} -DPROF ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}.o
56	@${LD} -X -r ${.TARGET}.o -o ${.TARGET}
57	@rm -f ${.TARGET}.o
58
59.if (${MACHINE_ARCH} != "mips")
60${SASM}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
61	@echo creating ${.TARGET}
62	@printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' | \
63	    ${CPP} -DPIC ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -k -o ${.TARGET}
64.else
65${SASM}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
66	@echo creating ${.TARGET}
67	@printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' | \
68	    ${CPP} -DPIC ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}
69.endif
70
71${ASM}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
72	@echo creating ${.TARGET}
73	@printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' | \
74	    ${CPP} ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}.o
75	@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
76	@rm -f ${.TARGET}.o
77
78${PPSEUDO}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
79	@echo creating ${.TARGET}
80	@printf '#include "SYS.h"\nPSEUDO(${.PREFIX},${.PREFIX:S/_//})\n' | \
81	    ${CPP} -DPROF ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}.o
82	@${LD} -X -r ${.TARGET}.o -o ${.TARGET}
83	@rm -f ${.TARGET}.o
84
85.if (${MACHINE_ARCH} != "mips")
86${SPSEUDO}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
87	@echo creating ${.TARGET}
88	@printf '#include "SYS.h"\nPSEUDO(${.PREFIX},${.PREFIX:S/_//})\n' | \
89	    ${CPP} -DPIC ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -k -o ${.TARGET}
90.else
91${SPSEUDO}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
92	@echo creating ${.TARGET}
93	@printf '#include "SYS.h"\nPSEUDO(${.PREFIX},${.PREFIX:S/_//})\n' | \
94	    ${CPP} -DPIC ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}
95.endif
96
97${PSEUDO}: ${.CURDIR}/arch/${MACHINE_ARCH}/SYS.h /usr/include/sys/syscall.h
98	@echo creating ${.TARGET}
99	@printf '#include "SYS.h"\nPSEUDO(${.PREFIX},${.PREFIX:S/_//})\n' | \
100	    ${CPP} ${CFLAGS:M-[ID]*} ${AINC} | ${AS} -o ${.TARGET}.o
101	@${LD} -X -r ${.TARGET}.o -o ${.TARGET}
102	@rm -f ${.TARGET}.o
103
104LSRCS+=	protolib.c
105
106protolib.ln:
107	${LINT} ${LINTFLAGS} ${CFLAGS:M-[IDU]*} ${AINC} -i ${.IMPSRC}
108
109MAN+=	accept.2 access.2 acct.2 adjtime.2 bind.2 brk.2 chdir.2 chflags.2 \
110	chmod.2 chown.2 chroot.2 close.2 connect.2 dup.2 execve.2 _exit.2 \
111	fcntl.2 flock.2 fork.2 fsync.2 getdirentries.2 getfh.2 getfsstat.2 \
112	getgid.2 getgroups.2 getitimer.2 getlogin.2 getpeername.2 getpgrp.2 \
113	getpid.2 getpriority.2 getrlimit.2 getrusage.2 getsockname.2 \
114	getsockopt.2 gettimeofday.2 getuid.2 intro.2 issetugid.2 ioctl.2 \
115	kill.2 link.2 \
116	listen.2 lseek.2 mkdir.2 mkfifo.2 mknod.2 madvise.2 mincore.2 \
117	minherit.2 mlock.2 \
118	mmap.2 mount.2 mprotect.2 msync.2 munmap.2 nfssvc.2 open.2 pathconf.2 \
119	pipe.2 profil.2 poll.2 ptrace.2 quotactl.2 read.2 readlink.2 reboot.2 \
120	recv.2 rename.2 revoke.2 rfork.2 rmdir.2 select.2 send.2 setgroups.2 \
121	setpgid.2 setsid.2 setuid.2 shutdown.2 sigaction.2 sigaltstack.2 \
122	sigpending.2 sigprocmask.2 sigreturn.2 sigstack.2 sigsuspend.2 \
123	socket.2 socketpair.2 stat.2 statfs.2 swapon.2 symlink.2 sync.2 \
124	sysarch.2 syscall.2 truncate.2 umask.2 unlink.2 utimes.2 vfork.2 \
125	wait.2 write.2
126
127MAN+=	msgctl.2 shmctl.2 shmat.2 semop.2 semget.2 semctl.2 msgsnd.2 msgrcv.2 \
128	msgget.2 shmget.2
129
130MLINKS+=brk.2 sbrk.2
131MLINKS+=dup.2 dup2.2
132MLINKS+=chdir.2 fchdir.2
133MLINKS+=chflags.2 fchflags.2
134MLINKS+=chmod.2 fchmod.2
135MLINKS+=chown.2 fchown.2
136MLINKS+=chown.2 lchown.2
137MLINKS+=getgid.2 getegid.2
138MLINKS+=getitimer.2 setitimer.2
139MLINKS+=getlogin.2 setlogin.2
140MLINKS+=getpid.2 getppid.2
141MLINKS+=getpriority.2 setpriority.2
142MLINKS+=getrlimit.2 setrlimit.2
143MLINKS+=getsockopt.2 setsockopt.2
144MLINKS+=gettimeofday.2 settimeofday.2
145MLINKS+=getuid.2 geteuid.2
146MLINKS+=intro.2 errno.2
147MLINKS+=lseek.2 seek.2
148MLINKS+=mlock.2 munlock.2
149MLINKS+=mount.2 unmount.2
150MLINKS+=pathconf.2 fpathconf.2
151MLINKS+=read.2 readv.2
152MLINKS+=recv.2 recvfrom.2 recv.2 recvmsg.2
153MLINKS+=send.2 sendmsg.2 send.2 sendto.2
154MLINKS+=setpgid.2 setpgrp.2
155MLINKS+=setuid.2 setegid.2 setuid.2 seteuid.2 setuid.2 setgid.2
156MLINKS+=shmat.2 shmdt.2
157MLINKS+=stat.2 fstat.2 stat.2 lstat.2
158MLINKS+=statfs.2 fstatfs.2
159MLINKS+=syscall.2 __syscall.2
160MLINKS+=truncate.2 ftruncate.2
161MLINKS+=wait.2 wait3.2 wait.2 wait4.2 wait.2 waitpid.2
162MLINKS+=write.2 writev.2
163