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

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

1.5     ! millert     1: #      $OpenBSD: Makefile,v 1.4 1996/09/02 16:04:06 briggs Exp $
        !             2: #      $NetBSD: Makefile,v 1.12 1996/11/06 17:58:58 christos Exp $
1.1       deraadt     3: #      @(#)Makefile    5.2 (Berkeley) 12/28/90
                      4:
                      5: PROG=  make
1.5     ! millert     6: CFLAGS+= -I${.CURDIR} -Wall -Wno-unused #-Wmissing-prototypes -Wstrict-prototypes
1.1       deraadt     7: SRCS=  arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
1.3       niklas      8:        make.c parse.c str.c suff.c targ.c var.c util.c
1.1       deraadt     9: SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
                     10:        lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
                     11:        lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
                     12:        lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
                     13:        lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
                     14: .PATH: ${.CURDIR}/lst.lib
                     15:
                     16: .if make(install)
                     17: SUBDIR+= PSD.doc
                     18: .endif
                     19:
                     20: .include <bsd.prog.mk>