From 30e14d6861a05f6d81fb843e5d23ea7a7d667c23 Mon Sep 17 00:00:00 2001 From: mrg Date: Thu, 22 Aug 1996 03:32:21 +0000 Subject: [PATCH] Makefile to build xbin, xman, and xinc --- distrib/sparc/xsets/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 distrib/sparc/xsets/Makefile diff --git a/distrib/sparc/xsets/Makefile b/distrib/sparc/xsets/Makefile new file mode 100644 index 000000000000..5de152ee1470 --- /dev/null +++ b/distrib/sparc/xsets/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1 1996/08/22 03:32:21 mrg Exp $ +# +# build X11 binary sets. + +all: bin include man + +bin: xbin.tar.gz + +xbin.tar.gz: + tar -C / -cf - usr/X11R6/bin | gzip --best > xbin.tar.gz + +include: xinc.tar.gz + +xinc.tar.gz: + tar -C / -cf - usr/X11R6/include | gzip --best > xinc.tar.gz + +man: xman.tar.gz + +xman.tar.gz: + tar -C / -cf - usr/X11R6/man | gzip --best > xman.tar.gz + +clean: + rm -f x???.tar.gz