First commit containing CP/M 3 help files
This commit is contained in:
22
Makefile
Normal file
22
Makefile
Normal 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
|
||||
|
Reference in New Issue
Block a user