Upstream official 0.12

This commit is contained in:
Ryan Pavlik
2010-07-22 16:29:25 -05:00
commit 24b1063e59
45 changed files with 8182 additions and 0 deletions

23
Makefile Normal file
View File

@@ -0,0 +1,23 @@
#
# 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