1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00

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
This commit is contained in:
Warner Losh 2001-03-01 06:26:32 +00:00
parent c5acf97d44
commit e829cbf262
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=73265

View File

@ -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.'