mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-21 23:29:16 +00:00
When building the 'release' target, install the mkso (and if appropriate,
mklink) data file in the proper spot.
This commit is contained in:
parent
0ed60a2fe1
commit
038d5d04cf
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user