diff options
author | wollman <wollman@FreeBSD.org> | 1995-01-19 22:41:25 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-01-19 22:41:25 +0000 |
commit | 409ac976ef302673b3fe6474691e67fb206b442c (patch) | |
tree | 376447c3009d82ad287265ba1d6a29198d4c8973 /Makefile | |
parent | b78542d3eb020d18b4f26640250f97b75e4a7fb7 (diff) | |
download | FreeBSD-src-409ac976ef302673b3fe6474691e67fb206b442c.zip FreeBSD-src-409ac976ef302673b3fe6474691e67fb206b442c.tar.gz |
Added `compile_et' and `mk_cmds' to lib-tools target, as they are needed
to build `libss'. Also delete bogus old /usr/sbin/compile_et at this time
(sorry, it was the only way I could think of to make sure it died).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.33 1995/01/11 11:52:50 jkh Exp $ +# $Id: Makefile,v 1.34 1995/01/13 21:00:05 wollman Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include and MOST of /usr/lib @@ -234,6 +234,11 @@ lib-tools: ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} cd ${.CURDIR}/usr.bin/nm && \ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} + cd ${.CURDIR}/usr.bin/compile_et && \ + ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} && \ + rm -f /usr/sbin/compile_et + cd ${.CURDIR}/usr.bin/mk_cmds && \ + ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} libraries: @echo "--------------------------------------------------------------" |