diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-23 15:58:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-23 15:58:34 +0000 |
commit | 018f89c090277b23e21223d3c6024d4486d0b3ed (patch) | |
tree | 1dc8c8db4294bfba6463b7cc60c1ec248ef863f8 /distrib/sun3/common/mini_xx.mk | |
parent | af17b126b4c74b74f453d3d9ebc956e537c50bf2 (diff) |
update from netbsd
Diffstat (limited to 'distrib/sun3/common/mini_xx.mk')
-rw-r--r-- | distrib/sun3/common/mini_xx.mk | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/distrib/sun3/common/mini_xx.mk b/distrib/sun3/common/mini_xx.mk new file mode 100644 index 00000000000..d3d2b12c739 --- /dev/null +++ b/distrib/sun3/common/mini_xx.mk @@ -0,0 +1,37 @@ +# +# $NetBSD: mini_xx.mk,v 1.1 1995/11/21 21:19:04 gwr Exp $ +# Hacks for re-linking some programs -static +# + +MINI_XX = awk grep more tip vi +mini_xx : ${MINI_XX} + +clean_xx: + -rm -f mini_xx ${MINI_XX} + +awk : FORCE + cd ${BSDSRCDIR}/gnu/usr.bin/gawk ;\ + $(MAKE) -f Makefile -f ${TOP}/common/Make.static \ + OUTDIR=${.CURDIR} ${.CURDIR}/awk + +grep : FORCE + cd ${BSDSRCDIR}/gnu/usr.bin/grep ;\ + $(MAKE) -f Makefile -f ${TOP}/common/Make.static \ + OUTDIR=${.CURDIR} ${.CURDIR}/grep + +more : FORCE + cd ${BSDSRCDIR}/usr.bin/more ;\ + $(MAKE) -f Makefile -f ${TOP}/common/Make.static \ + OUTDIR=${.CURDIR} ${.CURDIR}/more + +tip : FORCE + cd ${BSDSRCDIR}/usr.bin/tip ;\ + $(MAKE) -f Makefile -f ${TOP}/common/Make.static \ + OUTDIR=${.CURDIR} ${.CURDIR}/tip + +vi : FORCE + cd ${BSDSRCDIR}/usr.bin/vi/common ;\ + $(MAKE) -f Makefile -f ${TOP}/common/Make.static \ + OUTDIR=${.CURDIR} ${.CURDIR}/vi + +FORCE: |