1993-07-31 19:17:49 +04:00
|
|
|
# from: @(#)Makefile 5.2 (Berkeley) 12/28/90
|
1995-05-03 09:09:14 +04:00
|
|
|
# $Id: Makefile,v 1.7 1995/05/03 05:09:14 jtc Exp $
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
PROG= make
|
1994-03-05 03:34:29 +03:00
|
|
|
CFLAGS+= -I${.CURDIR} -DPOSIX
|
|
|
|
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
|
1995-05-03 09:09:14 +04:00
|
|
|
make.c parse.c str.c suff.c targ.c var.c
|
1993-03-21 12:45:37 +03: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
|
|
|
|
|
1994-06-30 09:33:30 +04:00
|
|
|
.if make(install)
|
1994-06-25 09:57:47 +04:00
|
|
|
SUBDIR+= PSD.doc
|
|
|
|
.endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.prog.mk>
|