diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-02-18 15:03:38 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-02-18 15:03:38 +0000 |
| commit | 2eed6c8aac31694e1a335d8ad0495f2b9d142377 (patch) | |
| tree | 50931fa362d4662d58372a16a5010277befeef7b /include | |
| parent | 724d53fc56d7553546e4e4ccf2d3ad13c951285e (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/include/Makefile b/include/Makefile index f6f28ba1ec69..d4404e67a208 100644 --- a/include/Makefile +++ b/include/Makefile @@ -8,7 +8,7 @@ CLEANFILES= osreldate.h version vers.c SUBDIR= rpcsvc -FILES= a.out.h ar.h assert.h bitstring.h complex.h ctype.h db.h \ +HDRS= a.out.h ar.h assert.h bitstring.h complex.h ctype.h db.h \ dirent.h disktab.h \ dlfcn.h elf.h elf-hints.h err.h fnmatch.h fstab.h \ fts.h glob.h grp.h strhash.h histedit.h ieeefp.h ifaddrs.h iso646.h \ @@ -21,25 +21,25 @@ FILES= a.out.h ar.h assert.h bitstring.h complex.h ctype.h db.h \ string.h stringlist.h strings.h struct.h sysexits.h tar.h time.h \ timers.h ttyent.h unistd.h utime.h utmp.h vis.h wchar.h wctype.h -ARPAFILES= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h +ARPAHDRS= ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h -PROTOFILES= dumprestore.h routed.h rwhod.h talkd.h timed.h +PROTOHDRS= dumprestore.h routed.h rwhod.h talkd.h timed.h -RPCFILES= auth.h auth_unix.h clnt.h pmap_clnt.h pmap_prot.h pmap_rmt.h \ +RPCHDRS= auth.h auth_unix.h clnt.h pmap_clnt.h pmap_prot.h pmap_rmt.h \ rpc.h rpc_com.h rpc_msg.h svc.h svc_auth.h types.h xdr.h \ auth_des.h des.h des_crypt.h -NETSMBFILES= nb_lib.h smb_lib.h smb_rap.h +NETSMBHDRS= nb_lib.h smb_lib.h smb_rap.h -MFILES= float.h floatingpoint.h stdarg.h varargs.h +MHDRS= float.h floatingpoint.h stdarg.h varargs.h # posix4/aio.h conflicts with dysons and isn't installed: -PFILES= mqueue.h sched.h semaphore.h # aio.h +PHDRS= mqueue.h sched.h semaphore.h # aio.h # Only for default SHARED=copies case -SFILES= soundcard.h joystick.h +SHDRS= soundcard.h joystick.h -LFILES= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \ +LHDRS= aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h \ termios.h ucontext.h LDIRS= cam msdosfs net netatalk netatm netgraph netinet netinet6 \ @@ -79,26 +79,26 @@ beforeinstall: ${SHARED} @rm -f ${DESTDIR}/usr/include/timepps.h cd ${.CURDIR}; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${FILES} ${DESTDIR}/usr/include + ${HDRS} ${DESTDIR}/usr/include cd ${.CURDIR}/arpa; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${ARPAFILES} ${DESTDIR}/usr/include/arpa + ${ARPAHDRS} ${DESTDIR}/usr/include/arpa cd ${.CURDIR}/protocols; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${PROTOFILES} ${DESTDIR}/usr/include/protocols + ${PROTOHDRS} ${DESTDIR}/usr/include/protocols cd ${.CURDIR}/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${RPCFILES} ${DESTDIR}/usr/include/rpc + ${RPCHDRS} ${DESTDIR}/usr/include/rpc ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.OBJDIR}/osreldate.h \ ${DESTDIR}/usr/include -.for i in ${LFILES} +.for i in ${LHDRS} ln -sf sys/$i ${DESTDIR}/usr/include/$i .endfor -.for i in ${MFILES} +.for i in ${MHDRS} ln -sf machine/$i ${DESTDIR}/usr/include/$i .endfor -.for i in ${PFILES} +.for i in ${PHDRS} ln -sf posix4/$i ${DESTDIR}/usr/include/$i .endfor @@ -122,7 +122,7 @@ copies: .endif .if exists(${.CURDIR}/../sys/contrib/netsmb/include/netsmb) cd ${.CURDIR}/../sys/contrib/netsmb/include/netsmb; \ - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${NETSMBFILES} \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${NETSMBHDRS} \ ${DESTDIR}/usr/include/netsmb .endif .if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include) @@ -130,7 +130,7 @@ copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}/usr/include/machine .endif -.for i in ${SFILES} +.for i in ${SHDRS} ln -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i .endfor |
