diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2005-03-02 20:50:10 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2005-03-02 20:50:10 +0000 |
| commit | 19ce697d2e73a1ce441730caf16efc04a7a2672a (patch) | |
| tree | f7807645a3832dc34ec621cf3b732586194e15ee /include | |
| parent | 3a21c92bdfab8c78dbabdb45c7fed15b82276369 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/include/Makefile b/include/Makefile index 03e9d36f9463..083eb420a328 100644 --- a/include/Makefile +++ b/include/Makefile @@ -113,11 +113,14 @@ copies: done .endif .endfor -.for i in ${LDIRS} ${LSUBDIRS:Ndev/bktr} ${LSUBSUBDIRS} +.for i in ${LDIRS} ${LSUBDIRS:Ndev/acpica:Ndev/bktr} ${LSUBSUBDIRS} cd ${.CURDIR}/../sys; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ ${DESTDIR}${INCLUDEDIR}/$i .endfor + cd ${.CURDIR}/../sys/dev/acpica; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \ + ${DESTDIR}${INCLUDEDIR}/dev/acpica cd ${.CURDIR}/../sys/dev/bktr; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ ${DESTDIR}${INCLUDEDIR}/dev/bktr @@ -150,12 +153,22 @@ symlinks: ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ done .endfor -.for i in ${LSUBDIRS} +.for i in ${LSUBDIRS:Ndev/acpica:Ndev/bktr} cd ${.CURDIR}/../sys/$i; \ for h in *.h; do \ ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ done .endfor + cd ${.CURDIR}/../sys/dev/acpica; \ + for h in acpiio.h; do \ + ln -fs ../../../../sys/dev/acpica/$$h \ + ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ + done + cd ${.CURDIR}/../sys/dev/bktr; \ + for h in ioctl_*.h; do \ + ln -fs ../../../../sys/dev/bktr/$$h \ + ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ + done .for i in ${LSUBSUBDIRS} cd ${.CURDIR}/../sys/$i; \ for h in *.h; do \ |
