CFLAGS= /EHsc /W4 /nologo

all: pipe16.exe

pipe16.exe: pipe16.cpp strtoken.obj
	cl $(CFLAGS) pipe16.cpp strtoken.obj

strtoken.obj: strtoken.cpp strtoken.h
	cl $(CFLAGS) -c strtoken.cpp

