027794763a/Makefile

User picture

Commiter: Charles Childers

Author: Charles Childers

Revision: 027794763a


File Size: 505 Bytes

(March 11, 2010 04:06 UTC) About 2 years ago

fix building of binaries; image

 
Show/hide line numbers
default: clean binary imagefile

binary:
	@make -C vm/console
	@cp vm/console/retro ./retro
	@make -C vm/fast-console
	@cp vm/fast-console/retro ./retro-fast

imagefile:
	@make -C image
	@cp image/retroImage .
	@echo "editor new editor save bye" | ./retro

clean:
	@make -C vm/tools clean
	@make -C vm/console clean
	@make -C vm/fast-console clean
	@make -C image clean

purge: clean
	@rm -f retro retro-fast retroImage

glossary:
	@perl extras/tty-glossary.pl doc/wiki/WordsInRetro.txt >doc/glossary.txt