[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Annotation of src/usr.bin/make/Makefile, Revision 1.15

1.15    ! espie       1: #      $OpenBSD: Makefile,v 1.14 2000/06/10 01:32:22 espie Exp $
1.1       deraadt     2:
                      3: PROG=  make
1.11      espie       4: CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused -Wstrict-prototypes#-Wmissing-prototypes -Wstrict-prototypes
1.9       smurph      5:
                      6: .if (${MACHINE_ARCH} == "m88k")
                      7: CFLAGS+=-O0
                      8: .endif
                      9:
1.12      espie      10: SRCS=  arch.c buf.c compat.c cond.c dir.c error.c for.c hash.c job.c main.c \
1.10      espie      11:        make.c parse.c str.c suff.c targ.c var.c #util.c
1.1       deraadt    12: SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
1.15    ! espie      13:        lstConcatDestroy.c \
1.1       deraadt    14:        lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
1.14      espie      15:        lstFindFrom.c lstFirst.c lstForEachFrom.c \
1.1       deraadt    16:        lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
                     17:        lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
                     18: .PATH: ${.CURDIR}/lst.lib
                     19:
                     20: .if make(install)
                     21: SUBDIR+= PSD.doc
                     22: .endif
                     23:
                     24: .include <bsd.prog.mk>