cc=cl.exe
cflags=/Opt2 /G6 /Gs /c /YX /MD
target=plugcommon
all:$(target).obj
$(target).obj: $(target).cpp
	$(cc) $(cflags) $(target).cpp
clean:
	if exist *.pch del *.pch
clean_rest:
	if exist *.obj del *.obj
