diff --git a/Makefile b/Makefile deleted file mode 100644 index f63da69..0000000 --- a/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# -# wiiuse Makefile -# - -all clean install: - @$(MAKE) -C src $@ - @$(MAKE) -C example $@ - @$(MAKE) -C example-sdl $@ - -wiiuse: - @$(MAKE) -C src - -ex: - @$(MAKE) -C example - -sdl-ex: - @$(MAKE) -C example-sdl - -distclean: - @$(MAKE) -C src $@ - @$(MAKE) -C example $@ - @$(MAKE) -C example-sdl $@ - @find . -type f \( -name "*.save" -or -name "*~" -or -name gmon.out \) -delete &> /dev/null diff --git a/cmake/module-docs/Makefile b/cmake/module-docs/Makefile deleted file mode 100644 index da3d218..0000000 --- a/cmake/module-docs/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -#! make -# -# Automatically generate PDF, PNG, and JPG files from DOT files. -# -# Original Author: -# 2009 Ryan Pavlik -# http://academic.cleardefinition.com -# Iowa State University HCI Graduate Program/VRAC - -pdfs := $(patsubst %.dot,%.pdf,$(wildcard *.dot)) -pngs := $(patsubst %.dot,%.png,$(wildcard *.dot)) -jpgs := $(patsubst %.dot,%.jpg,$(wildcard *.dot)) - -all: $(pdfs) $(pngs) $(jpgs) -pdf: $(pdfs) -png: $(pngs) -jpg: $(jpgs) - -clean: - -rm -f $(pdfs) $(pngs) $(jpgs) -realclean: clean - -rm -f *~ - -.PHONY: all pdf png jpg clean realclean - -$(pdfs): %.pdf: %.dot - dot -Tpdf $< -o$@ - -$(pngs): %.png: %.dot - dot -Tpng $< -o$@ - -$(jpgs): %.jpg: %.dot - dot -Tjpg $< -o$@ - diff --git a/example-sdl/Makefile b/example-sdl/Makefile deleted file mode 100644 index c206354..0000000 --- a/example-sdl/Makefile +++ /dev/null @@ -1,83 +0,0 @@ -# -# wiiuse Makefile -# - -# -# Change this to your GCC version. -# -CC = gcc - -#################################################### -# -# You should not need to edit below this line. -# -#################################################### - -# -# Universal cflags -# -CFLAGS = -Wall -pipe -fPIC -funroll-loops - -ifeq ($(debug),1) - OBJ_PREFIX = debug - CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG -else - OBJ_PREFIX = release - CFLAGS += -O2 -endif - -OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2) - -# -# Linking flags -# -LDFLAGS = -L../src/$(OBJ_DIR) -lm -lGL -lGLU -lglut -lSDL -lbluetooth -lwiiuse - -# -# Target binaries (always created as BIN) -# -BIN = ./$(OBJ_DIR)/wiiuse-sdl - -# -# Inclusion paths. -# -INCLUDES = -I../src/ -I/usr/include/SDL - -# -# Generate a list of object files -# -OBJS = $(OBJ_DIR)/sdl.o - -############################### -# -# Build targets. -# -############################### - -all: $(BIN) - -clean: - @-rm $(OBJS) 2> /dev/null - -distclean: clean - @-rm -r debug-* release-* 2> /dev/null - -install: - @if [ -e $(BIN) ]; then \ - cp -v $(BIN) /usr/bin ;\ - fi - -$(BIN): mkdir $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN) - -$(OBJ_DIR)/%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@ - -mkdir: - @if [ ! -d $(OBJ_DIR) ]; then \ - mkdir $(OBJ_DIR); \ - fi - -run: all - LD_LIBRARY_PATH=`pwd`/../src/$(OBJ_DIR):$(LD_LIBRARY_PATH) $(BIN) - diff --git a/example-sdl/msvc/wiiusesdl.dsp b/example-sdl/msvc/wiiusesdl.dsp deleted file mode 100644 index 23c4a24..0000000 --- a/example-sdl/msvc/wiiusesdl.dsp +++ /dev/null @@ -1,111 +0,0 @@ -# Microsoft Developer Studio Project File - Name="wiiusesdl" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=wiiusesdl - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wiiusesdl.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wiiusesdl.mak" CFG="wiiusesdl - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wiiusesdl - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "wiiusesdl - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wiiusesdl - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "..\..\src" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib sdl.lib opengl32.lib glu32.lib wiiuse.lib /nologo /subsystem:windows /machine:I386 - -!ELSEIF "$(CFG)" == "wiiusesdl - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\..\src" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib sdl.lib opengl32.lib glu32.lib wiiuse.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "wiiusesdl - Win32 Release" -# Name "wiiusesdl - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\sdl.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\src\wiiuse.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/example-sdl/msvc/wiiusesdl.dsw b/example-sdl/msvc/wiiusesdl.dsw deleted file mode 100644 index 630b942..0000000 --- a/example-sdl/msvc/wiiusesdl.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wiiusesdl"=".\wiiusesdl.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/example-sdl/msvc/wiiusesdl.ncb b/example-sdl/msvc/wiiusesdl.ncb deleted file mode 100644 index e44ea28..0000000 Binary files a/example-sdl/msvc/wiiusesdl.ncb and /dev/null differ diff --git a/example-sdl/msvc/wiiusesdl.opt b/example-sdl/msvc/wiiusesdl.opt deleted file mode 100644 index fa46687..0000000 Binary files a/example-sdl/msvc/wiiusesdl.opt and /dev/null differ diff --git a/example/Makefile b/example/Makefile deleted file mode 100644 index 41b5cd1..0000000 --- a/example/Makefile +++ /dev/null @@ -1,84 +0,0 @@ -# -# wiiuse Makefile -# - -# -# Change this to your GCC version. -# -CC = gcc - -#################################################### -# -# You should not need to edit below this line. -# -#################################################### - -# -# Universal cflags -# -CFLAGS = -Wall -pipe -fPIC -funroll-loops - -ifeq ($(debug),1) - OBJ_PREFIX = debug - CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG -else - OBJ_PREFIX = release - CFLAGS += -O2 -endif - -OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2) - -# -# Linking flags -# -LDFLAGS = -L../src/$(OBJ_DIR) -lm -lwiiuse - -# -# Target binaries (always created as BIN) -# -BIN = ./$(OBJ_DIR)/wiiuse-example - -# -# Inclusion paths. -# -INCLUDES = -I../src/ - -# -# Generate a list of object files -# -OBJS = $(OBJ_DIR)/example.o - -############################### -# -# Build targets. -# -############################### - -all: $(BIN) - -clean: - @-rm $(OBJS) 2> /dev/null - -distclean: - @-rm -r debug-* release-* 2> /dev/null - -install: - @if [ -e $(BIN) ]; then \ - cp -v $(BIN) /usr/bin ; \ - fi - - -$(BIN): mkdir $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN) - -$(OBJ_DIR)/%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@ - -mkdir: - @if [ ! -d $(OBJ_DIR) ]; then \ - mkdir $(OBJ_DIR); \ - fi - -run: all - LD_LIBRARY_PATH=`pwd`/../src/$(OBJ_DIR):$(LD_LIBRARY_PATH) $(BIN) - diff --git a/example/msvc/wiiuseexample.dsp b/example/msvc/wiiuseexample.dsp deleted file mode 100644 index 9e9b34f..0000000 --- a/example/msvc/wiiuseexample.dsp +++ /dev/null @@ -1,106 +0,0 @@ -# Microsoft Developer Studio Project File - Name="wiiuseexample" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=wiiuseexample - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wiiuseexample.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wiiuseexample.mak" CFG="wiiuseexample - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wiiuseexample - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "wiiuseexample - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wiiuseexample - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "..\..\src" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib wiiuse.lib /nologo /subsystem:console /machine:I386 - -!ELSEIF "$(CFG)" == "wiiuseexample - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\..\src" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "wiiuseexample - Win32 Release" -# Name "wiiuseexample - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\example.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\src\wiiuse.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/example/msvc/wiiuseexample.dsw b/example/msvc/wiiuseexample.dsw deleted file mode 100644 index e31f8f5..0000000 --- a/example/msvc/wiiuseexample.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wiiuseexample"=".\wiiuseexample.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/example/msvc/wiiuseexample.ncb b/example/msvc/wiiuseexample.ncb deleted file mode 100644 index d943e18..0000000 Binary files a/example/msvc/wiiuseexample.ncb and /dev/null differ diff --git a/example/msvc/wiiuseexample.opt b/example/msvc/wiiuseexample.opt deleted file mode 100644 index fe837f8..0000000 Binary files a/example/msvc/wiiuseexample.opt and /dev/null differ diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index bab5b14..0000000 --- a/src/Makefile +++ /dev/null @@ -1,91 +0,0 @@ -# -# wiiuse Makefile -# - -# -# Change this to your GCC version. -# -CC = gcc - -#################################################### -# -# You should not need to edit below this line. -# -#################################################### - -# -# Universal cflags -# -CFLAGS = -Wall -pipe -fPIC -funroll-loops - -ifeq ($(debug),1) - OBJ_PREFIX = debug - CFLAGS += -g -pg -DWITH_WIIUSE_DEBUG - -else - OBJ_PREFIX = release - CFLAGS += -O2 -endif - -OBJ_DIR = $(OBJ_PREFIX)-$(shell $(CC) -v 2>&1|grep ^Target:|cut -d' ' -f2) - -# -# Linking flags -# -LDFLAGS = -shared -lm -lbluetooth - -# -# Target binaries (always created as BIN) -# -BIN = ./$(OBJ_DIR)/libwiiuse.so - -# -# Inclusion paths. -# -INCLUDES = -I. - -# -# Generate a list of object files -# -OBJS = \ - $(OBJ_DIR)/classic.o \ - $(OBJ_DIR)/dynamics.o \ - $(OBJ_DIR)/events.o \ - $(OBJ_DIR)/io.o \ - $(OBJ_DIR)/io_nix.o \ - $(OBJ_DIR)/ir.o \ - $(OBJ_DIR)/nunchuk.o \ - $(OBJ_DIR)/guitar_hero_3.o \ - $(OBJ_DIR)/wiiuse.o - -############################### -# -# Build targets. -# -############################### - -all: $(BIN) - -clean: - @-rm $(OBJS) 2> /dev/null - -distclean: - @-rm -r debug-* release-* 2> /dev/null - -install: - @if [ -e $(BIN) ]; then \ - cp -v $(BIN) /usr/lib ; \ - fi - @cp -v wiiuse.h /usr/include - -$(BIN): mkdir $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $(BIN) - -$(OBJ_DIR)/%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@ - -mkdir: - @if [ ! -d $(OBJ_DIR) ]; then \ - mkdir $(OBJ_DIR); \ - fi - diff --git a/src/msvc/wiiuse.dsp b/src/msvc/wiiuse.dsp deleted file mode 100644 index dd66ae7..0000000 --- a/src/msvc/wiiuse.dsp +++ /dev/null @@ -1,191 +0,0 @@ -# Microsoft Developer Studio Project File - Name="wiiuse" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=wiiuse - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "wiiuse.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "wiiuse.mak" CFG="wiiuse - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "wiiuse - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "wiiuse - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "wiiuse - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib hid.lib setupapi.lib /nologo /dll /machine:I386 - -!ELSEIF "$(CFG)" == "wiiuse - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "WIIUSE_EXPORTS" /D "WITH_WIIUSE_DEBUG" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib hid.lib setupapi.lib /nologo /dll /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "wiiuse - Win32 Release" -# Name "wiiuse - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\classic.c -# End Source File -# Begin Source File - -SOURCE=..\dynamics.c -# End Source File -# Begin Source File - -SOURCE=..\events.c -# End Source File -# Begin Source File - -SOURCE=..\guitar_hero_3.c -# End Source File -# Begin Source File - -SOURCE=..\io.c -# End Source File -# Begin Source File - -SOURCE=..\io_nix.c -# End Source File -# Begin Source File - -SOURCE=..\io_win.c -# End Source File -# Begin Source File - -SOURCE=..\ir.c -# End Source File -# Begin Source File - -SOURCE=..\nunchuk.c -# End Source File -# Begin Source File - -SOURCE=..\wiiuse.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\classic.h -# End Source File -# Begin Source File - -SOURCE=..\definitions.h -# End Source File -# Begin Source File - -SOURCE=..\dynamics.h -# End Source File -# Begin Source File - -SOURCE=..\events.h -# End Source File -# Begin Source File - -SOURCE=..\guitar_hero_3.h -# End Source File -# Begin Source File - -SOURCE=..\io.h -# End Source File -# Begin Source File - -SOURCE=..\ir.h -# End Source File -# Begin Source File - -SOURCE=..\nunchuk.h -# End Source File -# Begin Source File - -SOURCE=..\os.h -# End Source File -# Begin Source File - -SOURCE=..\wiiuse.h -# End Source File -# Begin Source File - -SOURCE=..\wiiuse_internal.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=..\..\CHANGELOG -# End Source File -# End Group -# End Target -# End Project diff --git a/src/msvc/wiiuse.dsw b/src/msvc/wiiuse.dsw deleted file mode 100644 index 5d662bf..0000000 --- a/src/msvc/wiiuse.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "wiiuse"=".\wiiuse.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/src/msvc/wiiuse.opt b/src/msvc/wiiuse.opt deleted file mode 100644 index b6ebe4c..0000000 Binary files a/src/msvc/wiiuse.opt and /dev/null differ diff --git a/wiiuse.cbp b/wiiuse.cbp deleted file mode 100644 index a71d3a0..0000000 --- a/wiiuse.cbp +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - diff --git a/wiiuse.layout b/wiiuse.layout deleted file mode 100644 index 5b74afe..0000000 --- a/wiiuse.layout +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -