aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-10-05 09:40:24 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-10-05 09:40:24 +0000
commit97fe7f477fc469b6a75596f47dc98a08e4ed3e13 (patch)
tree55baa49e3efb3c9fd481116b6e7a5d7232c58445 /usr.bin
parentc63ba9f5ae735a804cb29cef14222f9fb1958922 (diff)
downloadsrc-97fe7f477fc469b6a75596f47dc98a08e4ed3e13.tar.gz
src-97fe7f477fc469b6a75596f47dc98a08e4ed3e13.zip
Changes to support full make parallelism (-j<n>) in the world
target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
Notes
Notes: svn path=/head/; revision=30113
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ftp/Makefile3
-rw-r--r--usr.bin/lex/Makefile5
2 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile
index 4bb9dc0cc2d6..acf31c159814 100644
--- a/usr.bin/ftp/Makefile
+++ b/usr.bin/ftp/Makefile
@@ -1,10 +1,11 @@
-# $Id$
+# $Id: Makefile,v 1.6 1997/06/25 08:56:33 msmith Exp $
# $NetBSD: Makefile,v 1.11 1997/03/24 21:59:36 christos Exp $
# from: @(#)Makefile 8.2 (Berkeley) 4/3/94
PROG= ftp
SRCS= cmds.c cmdtab.c complete.c domacro.c fetch.c ftp.c main.c ruserpass.c \
util.c
+CFLAGS+=-I${.CURDIR}/../../contrib-crypto/telnet
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile
index 63f36e93c212..a63599f46bb9 100644
--- a/usr.bin/lex/Makefile
+++ b/usr.bin/lex/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.10 1997/02/22 19:55:34 peter Exp $
#
# By default, flex will be configured to generate 8-bit scanners only if the
# -8 flag is given. If you want it to always generate 8-bit scanners, add
@@ -15,6 +15,7 @@ LINKS+= ${BINDIR}/lex ${BINDIR}/flex
LINKS+= ${BINDIR}/lex ${BINDIR}/flex++
SRCS= scan.c ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.c \
+ parse.h \
skel.c sym.c tblcmp.c yylex.c
LFLAGS+= -is
CFLAGS+= -I. -I${.CURDIR}
@@ -34,6 +35,7 @@ beforeinstall:
${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++
+.ORDER: parse.c parse.h
parse.c parse.h: parse.y
$(YACC) -d $(.CURDIR)/parse.y
mv -f y.tab.c parse.c
@@ -46,7 +48,6 @@ bootstrap: initscan.c
cp -f ${.CURDIR}/initscan.c scan.c ; \
}
-beforedepend: parse.h
scan.o: parse.h
test: check