Changeset 027794763a55e8466e4e8003f28e383073d28a41

User picture

Commiter: Charles Childers

Author: Charles Childers

Parent: 3f44ecfab7

(2010/03/11 04:06) Almost 2 years ago

fix building of binaries; image

Affected files

Updated image/Makefile Download diff

3f44ecfab72cfb21d66e7a3075cfec2b3f7c8773027794763a55e8466e4e8003f28e383073d28a41
32
	$(VM) $(STATS) --with build.retro >build.log
32
	$(VM) $(STATS) --with build.retro >build.log
33
33
34
clean:
34
clean:
35
	rm -f build.log retroImage.js Img.java Img2.java build.stats
35
	@rm -f build.log retroImage.js Img.java Img2.java build.stats

Updated Makefile Download diff

3f44ecfab72cfb21d66e7a3075cfec2b3f7c8773027794763a55e8466e4e8003f28e383073d28a41
1
default: clean retroImage
1
default: clean binary imagefile
2
3
binary:
2
	@make -C vm/console
4
	@make -C vm/console
3
	@cp vm/console/retro ./retro
5
	@cp vm/console/retro ./retro
4
	@make -C vm/fast-console
6
	@make -C vm/fast-console
5
	@cp vm/fast-console/retro ./retro-fast
7
	@cp vm/fast-console/retro ./retro-fast
6
8
7
retroImage:
9
imagefile:
10
	@make -C image
8
	@cp image/retroImage .
11
	@cp image/retroImage .
9
	@echo "editor new editor save bye" | ./retro
12
	@echo "editor new editor save bye" | ./retro
10
13