From 038d5d04cf7d662e7db66dfac144bdc724ac12ad Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Wed, 22 Apr 1998 05:22:44 +0000 Subject: [PATCH] When building the 'release' target, install the mkso (and if appropriate, mklink) data file in the proper spot. --- usr.bin/cksum/Makefile | 7 +++++-- usr.bin/compile/Makefile | 4 +++- usr.bin/man/Makefile | 5 +++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/usr.bin/cksum/Makefile b/usr.bin/cksum/Makefile index d0b7538..e9ef05f 100644 --- a/usr.bin/cksum/Makefile +++ b/usr.bin/cksum/Makefile @@ -1,6 +1,6 @@ # # This makefile is intended for use with dmake(1) on Apple IIGS -# $Id: Makefile,v 1.3 1998/03/08 17:33:34 gdr-ftp Exp $ +# $Id: Makefile,v 1.4 1998/04/22 05:22:35 gdr-ftp Exp $ # # Created by Dave Tribby, December 1997 @@ -8,9 +8,12 @@ PROG= cksum SRCS= cksum.c crc.c print.c sum1.c sum2.c crc32.c BINDIR= /usr/bin +HAS_MKSO_DATA = true +HAS_MKLINK_DATA = true + .INCLUDE : /src/gno/prog.mk -# Under UNIX, chsum whould be linked to sum (and cksum.1 to sum.1) +# Under UNIX, cksum whould be linked to sum (and cksum.1 to sum.1) # For GNO, just copy the program. (Need to invoke "dmake sum") sum: cksum cp cksum sum diff --git a/usr.bin/compile/Makefile b/usr.bin/compile/Makefile index a79ca45..16c715a 100755 --- a/usr.bin/compile/Makefile +++ b/usr.bin/compile/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1998/02/15 00:05:25 gdr-ftp Exp $ +# $Id: Makefile,v 1.2 1998/04/22 05:22:39 gdr-ftp Exp $ # PROG = compile @@ -9,5 +9,7 @@ BINDIR = /usr/bin STACK = 1024 OPTIMIZE= 79 +HAS_MKSO_DATA = true + .INCLUDE : /src/gno/prog.mk diff --git a/usr.bin/man/Makefile b/usr.bin/man/Makefile index e517bbb..537fe07 100644 --- a/usr.bin/man/Makefile +++ b/usr.bin/man/Makefile @@ -1,7 +1,7 @@ # # Devin Reade, 1998 # -# $Id: Makefile,v 1.2 1998/03/29 20:52:14 gdr-ftp Exp $ +# $Id: Makefile,v 1.3 1998/04/22 05:22:44 gdr-ftp Exp $ # CUSTOM_RULES = true # provide our own build rules @@ -73,11 +73,12 @@ RELDIRS = $(RELSBIN) $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man8 $(DESC_DIR) release: $(PROGS) $(M1) $(M8) $(DESC) $(INSTALL) -d $(RELSBIN) $(RELBIN) $(RELMAN)/man1 $(RELMAN)/man8 - $(INSTALL) -d $(DESC_DIR) + $(INSTALL) -d $(DESC_DIR) $(MKSO_DIR) $(INSTALL) $(PROGS1) $(RELBIN) $(INSTALL) $(PROGS8) $(RELSBIN) $(INSTALL) $(M1) $(RELMAN)/man1 $(INSTALL) $(M8) $(RELMAN)/man8 + $(INSTALL) mkso.data $(MKSO_DIR)/mkso.man $(DESCU) -o $(DESC_SRC) $(DESC_SRC) $(DESC) install: $(PROGS) $(M1) $(M8)