1997-06-01 01:21:13 +04:00
|
|
|
# $NetBSD: Makefile,v 1.24 1997/05/31 21:21:19 cjs Exp $
|
1993-08-02 21:18:41 +04:00
|
|
|
|
1996-05-17 01:03:24 +04:00
|
|
|
SUBDIR= libg++ libstdc++ # libio libiostream
|
1993-07-15 23:05:11 +04:00
|
|
|
|
1996-04-08 06:45:55 +04:00
|
|
|
HEADERS= cassert cctype cerrno cfloat ciso646 climits clocale cmath complex \
|
|
|
|
csetjmp csignal cstdarg cstddef cstdio cstdlib cstring ctime \
|
|
|
|
cwchar cwctype new stddef string exception stdexcept typeinfo \
|
|
|
|
algorithm deque list map queue set stack vector utility functional \
|
|
|
|
iterator memory numeric
|
|
|
|
|
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
includes:
|
1996-03-11 07:58:22 +03:00
|
|
|
@echo installing includes from libg++/src
|
|
|
|
@(cd libg++/src ; for j in *.[ih]; do \
|
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1996-03-11 07:58:22 +03:00
|
|
|
${DESTDIR}/usr/include/g++/$$j; \
|
|
|
|
done)
|
1996-03-09 03:18:56 +03:00
|
|
|
@echo installing includes from include/gen
|
|
|
|
@(cd include/gen ; for j in *.*P; do \
|
1993-09-24 03:28:29 +04:00
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/gen/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1993-09-24 03:28:29 +04:00
|
|
|
${DESTDIR}/usr/include/g++/gen/$$j; \
|
1993-07-15 23:05:11 +04:00
|
|
|
done)
|
1996-05-16 02:56:13 +04:00
|
|
|
@echo installing includes from libio
|
|
|
|
@(cd libio ; for j in *.h; do \
|
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1996-05-16 02:56:13 +04:00
|
|
|
${DESTDIR}/usr/include/g++/$$j; \
|
|
|
|
done)
|
1996-03-09 03:18:56 +03:00
|
|
|
@echo installing includes from libstdc++/std
|
1997-02-07 10:14:02 +03:00
|
|
|
@(cd libstdc++/std ; for j in *.h *.cc; do \
|
1996-03-11 07:58:22 +03:00
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/std/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1996-03-11 07:58:22 +03:00
|
|
|
${DESTDIR}/usr/include/g++/std/$$j; \
|
1996-03-09 03:18:56 +03:00
|
|
|
done)
|
|
|
|
@echo installing includes from libstdc++/stl
|
1997-02-07 10:14:02 +03:00
|
|
|
@(cd libstdc++/stl ; for j in *.h *.cc; do \
|
1996-04-08 06:45:55 +04:00
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1996-04-08 06:45:55 +04:00
|
|
|
${DESTDIR}/usr/include/g++/$$j; \
|
|
|
|
done)
|
|
|
|
@echo installing includes from libstdc++
|
|
|
|
@(cd libstdc++ ; for j in *.h ${HEADERS}; do \
|
|
|
|
cmp -s $$j ${DESTDIR}/usr/include/g++/$$j || \
|
1996-10-18 06:52:59 +04:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 $$j \
|
1996-04-08 06:45:55 +04:00
|
|
|
${DESTDIR}/usr/include/g++/$$j; \
|
1996-03-09 03:18:56 +03:00
|
|
|
done)
|
1993-07-15 23:05:11 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.subdir.mk>
|