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

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

1.10    ! espie       1: #      $OpenBSD: Makefile,v 1.9 1999/09/28 02:22:53 smurph Exp $
1.1       deraadt     2:
                      3: PROG=  make
1.7       millert     4: CFLAGS+= -I${.CURDIR} -Wall -Wno-char-subscripts -Wno-unused #-Wmissing-prototypes -Wstrict-prototypes
1.9       smurph      5:
                      6: .if (${MACHINE_ARCH} == "m88k")
                      7: CFLAGS+=-O0
                      8: .endif
                      9:
1.1       deraadt    10: SRCS=  arch.c buf.c compat.c cond.c dir.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 \
                     13:        lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
                     14:        lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
                     15:        lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
                     16:        lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
                     17: .PATH: ${.CURDIR}/lst.lib
                     18:
                     19: .if make(install)
                     20: SUBDIR+= PSD.doc
                     21: .endif
                     22:
                     23: .include <bsd.prog.mk>