diff options
-rw-r--r-- | usr.bin/make/Makefile.dist | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/make/Makefile.dist b/usr.bin/make/Makefile.dist index 0a485e1..d50804d 100644 --- a/usr.bin/make/Makefile.dist +++ b/usr.bin/make/Makefile.dist @@ -1,7 +1,10 @@ # $FreeBSD$ -# a very simple makefile... +# a simple makefile to help builds on !FreeBSD systems pmake: @echo 'make started.' - cc -DDEFSHELLNAME=\"sh\" -I. -c *.c + cc -D__FBSDID="static const char *id=" -DDEFSHELLNAME=\"sh\" -I. -c *.c cc *.o -o pmake @echo 'make completed.' + +clean: + @rm -f *.o pmake |