diff options
| author | Max Laier <mlaier@FreeBSD.org> | 2004-02-28 21:50:50 +0000 |
|---|---|---|
| committer | Max Laier <mlaier@FreeBSD.org> | 2004-02-28 21:50:50 +0000 |
| commit | 278445ba355938fdabc0918d19bae475e069fdec (patch) | |
| tree | d016b40bab1394f6970ee950fb5dbee5ba58df94 /include | |
| parent | 4b40c43af8962d34463940257de9d9ce37d72de8 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Makefile b/include/Makefile index c9168b14e671..7072671d42bb 100644 --- a/include/Makefile +++ b/include/Makefile @@ -113,6 +113,9 @@ copies: cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/netinet + cd ${.CURDIR}/../sys/contrib/pf/net; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ + ${DESTDIR}${INCLUDEDIR}/net cd ${.CURDIR}/../sys/opencrypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -150,6 +153,11 @@ symlinks: ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \ ${DESTDIR}${INCLUDEDIR}/netinet; \ done + cd ${.CURDIR}/../sys/contrib/pf/net; \ + for h in *.h; do \ + ln -fs ../../../sys/contrib/pf/net/$$h \ + ${DESTDIR}${INCLUDEDIR}/net; \ + done cd ${.CURDIR}/../sys/opencrypto; \ for h in *.h; do \ ln -fs ../../../sys/opencrypto/$$h \ |
