TARGET = test02

all : $(TARGET)

$(TARGET) :
	g++ src/test02.cpp -I/usr/local/include/Inventor/annex -L/usr/local/lib -lCoin -lopengl32 -lgdi32 -lwinmm -luser32 -lSoWin -o test02

clean :
	rm -f test02.exe
