1996-10-05 22:35:38 -04:00
|
|
|
# @(#)Makefile 5.2 (Berkeley) 12/28/90
|
2002-04-13 06:57:56 -04:00
|
|
|
# $Id: Makefile,v 1.6 1994/06/30 05:33:39 cgd Exp $
|
1999-08-27 21:08:13 -04:00
|
|
|
# $FreeBSD$
|
1994-05-27 08:33:43 -04:00
|
|
|
|
|
|
|
|
PROG= make
|
2005-03-15 10:10:51 -05:00
|
|
|
CFLAGS+=-I${.CURDIR}
|
2005-02-01 10:28:41 -05:00
|
|
|
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c lst.c main.c \
|
2002-10-28 18:33:57 -05:00
|
|
|
make.c parse.c str.c suff.c targ.c util.c var.c var_modify.c
|
1994-05-27 08:33:43 -04:00
|
|
|
|
2005-02-09 08:22:02 -05:00
|
|
|
NO_WERROR=
|
2004-11-25 07:50:16 -05:00
|
|
|
WARNS?= 3
|
2004-12-21 04:59:45 -05:00
|
|
|
NO_SHARED?= YES
|
2001-05-18 05:05:56 -04:00
|
|
|
|
2004-08-12 07:49:55 -04:00
|
|
|
CFLAGS+=-DMAKE_VERSION=\"5200408120\"
|
2002-08-31 03:18:40 -04:00
|
|
|
.if defined(_UPGRADING)
|
|
|
|
|
CFLAGS+=-D__FBSDID=__RCSID
|
|
|
|
|
.endif
|
2002-05-22 10:35:47 -04:00
|
|
|
|
2004-09-06 11:25:07 -04:00
|
|
|
# There is no obvious performance improvement currently.
|
2002-10-04 16:30:03 -04:00
|
|
|
# CFLAGS+=-DUSE_KQUEUE
|
|
|
|
|
|
2002-05-22 10:35:47 -04:00
|
|
|
main.o: ${MAKEFILE}
|
|
|
|
|
|
2000-08-16 19:31:43 -04:00
|
|
|
# Set the shell which make(1) uses. Bourne is the default, but a decent
|
|
|
|
|
# Korn shell works fine, and much faster. Using the C shell for this
|
|
|
|
|
# will almost certainly break everything, but it's Unix tradition to
|
|
|
|
|
# allow you to shoot yourself in the foot if you want to :-)
|
|
|
|
|
|
|
|
|
|
MAKE_SHELL?= sh
|
|
|
|
|
.if ${MAKE_SHELL} == "csh"
|
|
|
|
|
CFLAGS+= -DDEFSHELL=0
|
|
|
|
|
.elif ${MAKE_SHELL} == "sh"
|
|
|
|
|
CFLAGS+= -DDEFSHELL=1
|
|
|
|
|
.elif ${MAKE_SHELL} == "ksh"
|
|
|
|
|
CFLAGS+= -DDEFSHELL=2
|
|
|
|
|
.else
|
|
|
|
|
.error "MAKE_SHELL must be set to one of \"csh\", \"sh\" or \"ksh\"."
|
|
|
|
|
.endif
|
|
|
|
|
|
1994-05-27 08:33:43 -04:00
|
|
|
.include <bsd.prog.mk>
|