all:
	gcc -s -O3 -DCOMPILE_DLL -o test.o -I.  -c test.cpp
	gcj -s -O3 --shared -o test.dll test.o -lstdc++ -lgcj
	
	g++ dll_test.cpp test.dll -o dll_test.exe
	

