# # wiiusecpp makefile # to be used with NMAKE and Visual Studio compiler for Windows # # Do not nmake this file from the Windows commmand prompt. Use the Visual Studio # command prompt located in Start Menu/MS Visual Studio/Visual Studio Tools. #source file SRC = wiiusecpp.cpp #object file OBJ = wiiusecpp.obj #end product BIN = wiiusecpp.dll all:$(BIN) $(OBJ):$(SRC) cl /c /Fo /EHsc $(SRC) /I ..\\wiiuse $(BIN):$(OBJ) cl /LD $(SRC) /I ..\\wiiuse /link ..\\wiiuse\\wiiuse.lib