blob: 68d8e6482a349db10f0ec87c2eac6e4206c07b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Makefile for g++ library genclass
PROG= genclass
SRCS= genclass.sh
NOMAN=
STRIP=
genclass: genclass.sh
sed -e 's|^PROTODIR=.*|PROTODIR=${DESTDIR}/usr/include/g++/gen|' \
-e 's|<VERSION>|2.4|' ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>
.include "../../../usr.bin/Makefile.inc"
|