diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2007-07-06 07:20:59 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2007-07-06 07:20:59 +0000 |
| commit | 9fa28ff687d8760285c747494f0e562f7ba8a4d5 (patch) | |
| tree | 29e140cf1078700e2469dac60e54e25131d0917c /include | |
| parent | 6f5d8741e532cae5f69da3ffe7ecf3bf3afeb075 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile index f03e030bbeed..20d8d151dbf5 100644 --- a/include/Makefile +++ b/include/Makefile @@ -26,6 +26,9 @@ INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ ulimit.h unistd.h utime.h utmp.h uuid.h varargs.h vis.h wchar.h \ wctype.h wordexp.h +I4BHDRS=i4b_cause.h i4b_debug.h i4b_ioctl.h i4b_rbch_ioctl.h \ + i4b_tel_ioctl.h i4b_trace.h + MHDRS= float.h floatingpoint.h stdarg.h PHDRS= sched.h semaphore.h _semaphore.h @@ -175,6 +178,13 @@ copies: cd ${.CURDIR}/../sys/crypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ ${DESTDIR}${INCLUDEDIR}/crypto +.if ${MACHINE_ARCH} == "i386" +.if ${MK_I4B} != "no" + cd ${.CURDIR}/../sys/i4b/include; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${I4BHDRS} \ + ${DESTDIR}${INCLUDEDIR}/i4b +.endif +.endif cd ${.CURDIR}/../sys/opencrypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -256,6 +266,11 @@ symlinks: ln -fs ../../../sys/crypto/$$h \ ${DESTDIR}${INCLUDEDIR}/crypto; \ done + cd ${.CURDIR}/../sys/i4b/include; \ + for h in ${I4BHDRS}; do \ + ln -fs ../../../sys/i4b/include/$$h \ + ${DESTDIR}${INCLUDEDIR}/i4b; \ + done cd ${.CURDIR}/../sys/opencrypto; \ for h in *.h; do \ ln -fs ../../../sys/opencrypto/$$h \ |
