Home | History | Annotate | Line # | Download | only in make
Makefile revision 1.1
      1  1.1  cgd #	@(#)Makefile	5.2 (Berkeley) 12/28/90
      2  1.1  cgd 
      3  1.1  cgd PROG=	make
      4  1.1  cgd CFLAGS+=-I${.CURDIR}
      5  1.1  cgd SRCS=	arch.c buf.c compat.c cond.c dir.c hash.c job.c main.c \
      6  1.1  cgd 	make.c parse.c str.c suff.c targ.c var.c
      7  1.1  cgd SRCS+=	lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
      8  1.1  cgd 	lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
      9  1.1  cgd 	lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
     10  1.1  cgd 	lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
     11  1.1  cgd 	lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
     12  1.1  cgd .PATH:	${.CURDIR}/lst.lib
     13  1.1  cgd 
     14  1.1  cgd .include <bsd.prog.mk>
     15