diff options
Diffstat (limited to 'usr.bin/make/Makefile.dist')
-rw-r--r-- | usr.bin/make/Makefile.dist | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/usr.bin/make/Makefile.dist b/usr.bin/make/Makefile.dist new file mode 100644 index 0000000..8823d74 --- /dev/null +++ b/usr.bin/make/Makefile.dist @@ -0,0 +1,10 @@ +# $FreeBSD$ +# a simple makefile to help builds on !FreeBSD systems +pmake: + @echo 'make started.' + cc -D__dead2="" -D__unused="" -Darc4random=random -D__FBSDID="static const char *id=" -DDEFSHELLNAME=\"sh\" -I. -c *.c + cc *.o -o pmake + @echo 'make completed.' + +clean: + @rm -f *.o pmake |