default:
	make app

all:
	make clean
	make app

app:
	cl /EHsc com_cat.cpp matt_com.cpp

test:
	com_cat hello.txt

clean:
	del *.obj com_cat.exe
