NetBSD/gnu/lib/libg++/Makefile

51 lines
1.8 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.24 1997/05/31 21:21:19 cjs Exp $
SUBDIR= libg++ libstdc++ # libio libiostream
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
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 \
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 \
${DESTDIR}/usr/include/g++/gen/$$j; \
done)
@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 \
${DESTDIR}/usr/include/g++/$$j; \
done)
1996-03-09 03:18:56 +03:00
@echo installing includes from libstdc++/std
@(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
@(cd libstdc++/stl ; for j in *.h *.cc; 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 \
${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 \
${DESTDIR}/usr/include/g++/$$j; \
1996-03-09 03:18:56 +03:00
done)
1993-03-21 12:45:37 +03:00
.include <bsd.subdir.mk>