1
0

First commit containing CP/M 3 help files

This commit is contained in:
acn
2020-03-18 11:54:31 +01:00
parent 21718e3c0b
commit 20d9a123cb
36 changed files with 2178 additions and 32 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
# Also: help.raw => 0:HELP.DAT, "HELP [C]", to re-create HELP.HLP if 'makehelp'
# doesn't produce a working HELP.HLP file.
#
# Paragraphs may be justified using "par j".
HELPS = \
cpm3/*.help \
romwbw/*.help
all: makehelp help.hlp
help.hlp: $(HELPS)
cat $^ | unix2dos >help.raw
./makehelp help.raw >$@
@rm help.raw
makehelp: src/makehelp.c
$(CC) -o $@ $^
clean:
$(RM) help.hlp help.raw makehelp