1996-10-06 02:35:38 +00:00
|
|
|
# @(#)Makefile 5.2 (Berkeley) 12/28/90
|
1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
PROG= make
|
2001-04-26 04:40:57 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}
|
1994-05-27 12:33:43 +00:00
|
|
|
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
|
1996-10-06 02:35:38 +00:00
|
|
|
make.c parse.c str.c suff.c targ.c var.c util.c
|
1994-05-27 12:33:43 +00:00
|
|
|
SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
|
|
|
|
lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
|
|
|
|
lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
|
|
|
|
lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
|
|
|
|
lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
|
|
|
|
.PATH: ${.CURDIR}/lst.lib
|
|
|
|
|
2001-05-18 09:05:56 +00:00
|
|
|
NOSHARED?= YES
|
|
|
|
|
2000-08-16 23:31:43 +00: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 12:33:43 +00:00
|
|
|
.include <bsd.prog.mk>
|