diff options
author | ache <ache@FreeBSD.org> | 1995-06-16 22:46:38 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-06-16 22:46:38 +0000 |
commit | ec44130408957614340266cd07c2e198b2bb6103 (patch) | |
tree | bef80c89c1cab1a99660869df136eb809c7f41c1 /usr.bin/make | |
parent | d395e15c7cbb5d2a03648fcd52f9e6ab621381a7 (diff) | |
download | FreeBSD-src-ec44130408957614340266cd07c2e198b2bb6103.zip FreeBSD-src-ec44130408957614340266cd07c2e198b2bb6103.tar.gz |
Allow additional parsing of SYSV/GNU make "include" directive, it covers
90% of problems in ports Makefiles
Diffstat (limited to 'usr.bin/make')
-rw-r--r-- | usr.bin/make/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile b/usr.bin/make/Makefile index 04b5e67..c4c4064 100644 --- a/usr.bin/make/Makefile +++ b/usr.bin/make/Makefile @@ -1,8 +1,8 @@ # from: @(#)Makefile 5.2 (Berkeley) 12/28/90 -# $Id: Makefile,v 1.6 1994/06/30 05:33:39 cgd Exp $ +# $Id: Makefile,v 1.3 1995/01/23 21:00:09 jkh Exp $ PROG= make -CFLAGS+= -I${.CURDIR} -DPOSIX +CFLAGS+= -I${.CURDIR} -DPOSIX -DSYSVINCLUDE SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \ make.c parse.c str.c suff.c targ.c var.c SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \ |