view docs/makefile @ 2983:9b876d8e765e

mnln.asm: Fix obj.status.v command calling format text I also fixed the obj.status.v command (L0BF4). It's a debugging command used to display information about animated objects shown on the screen. The current implementation displays garbled text. The command calls a routine to format a string with arguments (L3ED6). The arguments to format are pushed on the stack before calling the formatting routine but two of them were incorrectly assigned.
author Guillaume Major <guillaume.major@gmail.com>
date Sat, 12 Apr 2014 15:30:29 +0200
parents 5738b61c8052
children 9abc463adb1e
line wrap: on
line source

include ../rules.mak

all:
	$(CD) basic09; make
	$(CD) ccguide; make
	$(CD) os9guide; make
	$(CD) os9sysprog; make

clean:
	$(CD) basic09; make clean
	$(CD) ccguide; make clean
	$(CD) os9guide; make clean
	$(CD) os9sysprog; make clean