diff options
author | peter <peter@FreeBSD.org> | 1999-04-06 02:13:11 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-06 02:13:11 +0000 |
commit | ac4f7c6b4046a2365042b1c44ac0f69436eae820 (patch) | |
tree | f75309eb8caa8c443eaa32b4d3a0ee8675a2dc70 /gnu/usr.bin | |
parent | 5aa9166dbaaf321f72899bccee8068258c7ff45c (diff) | |
download | FreeBSD-src-ac4f7c6b4046a2365042b1c44ac0f69436eae820.zip FreeBSD-src-ac4f7c6b4046a2365042b1c44ac0f69436eae820.tar.gz |
Zap the genclass makefile too, it's gone. (It was part of g++ - a hack to
create classes from templates manually)
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/genclass/Makefile | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/gnu/usr.bin/genclass/Makefile b/gnu/usr.bin/genclass/Makefile deleted file mode 100644 index 93924ef..0000000 --- a/gnu/usr.bin/genclass/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# -# $Id: Makefile,v 1.4 1997/02/22 15:45:31 peter Exp $ -# - -GPPDIR= ${.CURDIR}/../../../contrib/libg++ -MAN1= genclass.1 - -.PATH: ${GPPDIR}/libg++/src ${GPPDIR}/libg++/genclass - -all: genclass - -CLEANFILES+= genclass - -PROTODIR= /usr/share/libg++ -VERSION!= sed -n -e '/^VERSION/s/VERSION *= *\(.*\)/\1/p' \ - < ${GPPDIR}/libg++/Makefile.in - -#genclass prototypes -GEN= AVLMap.ccP AVLMap.hP AVLSet.ccP AVLSet.hP AVec.ccP AVec.hP \ - BSTSet.ccP BSTSet.hP Bag.ccP Bag.hP CHBag.ccP CHBag.hP \ - CHMap.ccP CHMap.hP CHNode.ccP CHNode.hP CHSet.ccP CHSet.hP \ - DLDeque.ccP DLDeque.hP DLList.ccP DLList.hP Deque.ccP Deque.hP \ - FPQueue.ccP FPQueue.hP FPStack.ccP FPStack.hP FPlex.ccP FPlex.hP \ - List.ccP List.hP MPlex.ccP MPlex.hP Map.ccP Map.hP \ - OSLBag.ccP OSLBag.hP OSLSet.ccP OSLSet.hP OXPBag.ccP OXPBag.hP \ - OXPSet.ccP OXPSet.hP PHPQ.ccP PHPQ.hP PQ.ccP PQ.hP \ - PSList.hP PVec.hP Plex.ccP Plex.hP Queue.ccP Queue.hP \ - RAVLMap.ccP RAVLMap.hP RPlex.ccP RPlex.hP SLBag.ccP SLBag.hP \ - SLList.ccP SLList.hP SLQueue.ccP SLQueue.hP SLSet.ccP SLSet.hP \ - SLStack.ccP SLStack.hP Set.ccP Set.hP SkipBag.ccP SkipBag.hP \ - SkipMap.ccP SkipMap.hP SkipSet.ccP SkipSet.hP SplayBag.ccP SplayBag.hP \ - SplayMap.ccP SplayMap.hP SplayNode.ccP SplayNode.hP \ - SplayPQ.ccP SplayPQ.hP SplaySet.ccP SplaySet.hP Stack.ccP Stack.hP \ - VHBag.ccP VHBag.hP VHMap.ccP VHMap.hP VHSet.ccP VHSet.hP \ - VOHSet.ccP VOHSet.hP VQueue.ccP VQueue.hP VStack.ccP VStack.hP \ - Vec.ccP Vec.hP XPBag.ccP XPBag.hP XPDeque.ccP XPDeque.hP \ - XPPQ.ccP XPPQ.hP XPQueue.ccP XPQueue.hP XPSet.ccP XPSet.hP \ - XPStack.ccP XPStack.hP XPlex.ccP XPlex.hP \ - defs.hP intSList.hP intVec.hP - - -genclass: genclass.sh - sed -e 's@^PROTODIR=.*$$@PROTODIR=$$\{PROTODIR-${PROTODIR}\}@' \ - -e 's/<VERSION>/${VERSION}/' < ${.ALLSRC} > genclass - -beforeinstall: - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${GEN:S;^;${GPPDIR}/libg++/src/gen/;} \ - ${DESTDIR}${PROTODIR} - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} genclass \ - ${DESTDIR}${BINDIR} - -.include <bsd.prog.mk> |