Deleted Added
full compact
Makefile (102393) Makefile (102692)
1# @(#)Makefile 5.2 (Berkeley) 12/28/90
2# $Id: Makefile,v 1.6 1994/06/30 05:33:39 cgd Exp $
1# @(#)Makefile 5.2 (Berkeley) 12/28/90
2# $Id: Makefile,v 1.6 1994/06/30 05:33:39 cgd Exp $
3# $FreeBSD: head/usr.bin/make/Makefile 102393 2002-08-25 02:45:04Z jmallett $
3# $FreeBSD: head/usr.bin/make/Makefile 102692 2002-08-31 07:18:40Z peter $
4
5PROG= make
6CFLAGS+=-I${.CURDIR}
7SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
8 make.c parse.c str.c suff.c targ.c var.c
9SRCS+= 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
16NOSHARED?= YES
17
18CFLAGS+=-DMAKE_VERSION=\"5200208240\"
4
5PROG= make
6CFLAGS+=-I${.CURDIR}
7SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
8 make.c parse.c str.c suff.c targ.c var.c
9SRCS+= 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
16NOSHARED?= YES
17
18CFLAGS+=-DMAKE_VERSION=\"5200208240\"
19.if defined(_UPGRADING)
20CFLAGS+=-D__FBSDID=__RCSID
21.endif
19
20main.o: ${MAKEFILE}
21
22# Set the shell which make(1) uses. Bourne is the default, but a decent
23# Korn shell works fine, and much faster. Using the C shell for this
24# will almost certainly break everything, but it's Unix tradition to
25# allow you to shoot yourself in the foot if you want to :-)
26

--- 12 unchanged lines hidden ---
22
23main.o: ${MAKEFILE}
24
25# Set the shell which make(1) uses. Bourne is the default, but a decent
26# Korn shell works fine, and much faster. Using the C shell for this
27# will almost certainly break everything, but it's Unix tradition to
28# allow you to shoot yourself in the foot if you want to :-)
29

--- 12 unchanged lines hidden ---