diff options
author | imp <imp@FreeBSD.org> | 2001-03-01 06:26:32 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-03-01 06:26:32 +0000 |
commit | b73b5414e714e2274ba69f418744b9301ddc4787 (patch) | |
tree | c46e181db8afb37f0c6787c513a7083e09ae6973 /usr.bin | |
parent | f46c3747188f201a4ef26a8c627ae3c996af84be (diff) | |
download | FreeBSD-src-b73b5414e714e2274ba69f418744b9301ddc4787.zip FreeBSD-src-b73b5414e714e2274ba69f418744b9301ddc4787.tar.gz |
Include -DDEFSHELL=1 in Makefile.dist so people boostrapping will
have a sane default.
Also add $FreeBSD$ while I'm here.
Pointed out by: bde
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/Makefile.dist | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/make/Makefile.dist b/usr.bin/make/Makefile.dist index c311d7e..76dde9e 100644 --- a/usr.bin/make/Makefile.dist +++ b/usr.bin/make/Makefile.dist @@ -1,7 +1,8 @@ +# $FreeBSD$ # a very simple makefile... pmake: @echo 'make started.' - cc -I. -c *.c + cc -DDEFSHELL=1 -I. -c *.c cd lst.lib; cc -I.. -c *.c cc *.o lst.lib/*.o -o pmake @echo 'make completed.' |