default:
	make cc.exe
	make c.exe
	make cpy.exe
	build.bat

all:
	make clean
	make default

cc.exe:cc.cpp
	c++ cc.cpp -o cc.exe

c.exe:c.cpp
	c++ c.cpp -o c.exe

cpy.exe:cpy.c
	gcc cpy.c -o cpy.exe

clean:
	del cc.exe c.exe cpy.exe

test:
	qemu-system-i386 -hda disk.img 
