Added installation notes the README and an install target to

the makefile.
This commit is contained in:
gdr 1996-02-11 00:59:16 +00:00
parent 9da81eb718
commit 6197eeee1f
2 changed files with 11 additions and 1 deletions

View File

@ -5,6 +5,10 @@ GNU version. For those not familiar with it, read the man page.
I admit that this has limited functionality with gsh, but it will
become more useful when sh(1) comes out ...
For installation, either type 'dmake install', or copy the files
test to /bin
test.1 to /man/man1
For copying info, see the legalese at the beginning of the file
test.c, or the man page (you have to view the file directly rather
than than via nroff(1) to see it).

View File

@ -1,7 +1,7 @@
#
# This file is intended for use with dmake
#
# $Id: makefile.mk,v 1.1 1996/02/10 08:27:30 gdr Exp $
# $Id: makefile.mk,v 1.2 1996/02/11 00:59:16 gdr Exp $
#
# VAFLAGS must use an optimization level of at least -O8, and no
# -g or -G* flag
@ -19,6 +19,8 @@ LDFLAGS += -v
LDLIBS =
OBJS = test.o test2.o operators.o
ROOTS = test.root test2.root operators.root
BINDIR = /bin
MANDIR = /man
test: $(OBJS) test.r
@purge
@ -46,6 +48,10 @@ clean:
clobber: clean
$(RM) -f test
install:
cp test $(BINDIR)
cp test.1 $(MANDIR)/man1
# use this rule to if you update binary_ops, or unary_ops
make_op:
@echo "$(MAKE) make_op invoked"