diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,12 @@
-.PHONY: all
+.PHONY: all test
 
+APPS=Asteroids Counter CRUD CurrencyConverter NetMonitor TicTacToe TwoCounters Wave
+OBJ=dist/build
+COMPILE=ghc --make -i$(OBJ) -L/usr/lib -L$(OBJ) -isrc -i../reactive-banana/src -idist/build/autogen
+
 all:
 	cabal configure && cabal build --ghc-options=-L/usr/lib
 
+test : src/Asteroids.hs src/Reactive/Banana/WX.hs
+	$(COMPILE) -o $@ $< -outputdir $(OBJ)/$@.tmp/
+	macosx-app $@
diff --git a/reactive-banana-wx.cabal b/reactive-banana-wx.cabal
--- a/reactive-banana-wx.cabal
+++ b/reactive-banana-wx.cabal
@@ -1,5 +1,5 @@
 Name:                reactive-banana-wx
-Version:             0.4.2.0
+Version:             0.4.3.0
 Synopsis:            Examples for the reactive-banana library, using wxHaskell.
 Description:
     This library provides some GUI examples for the @reactive-banana@ library,
@@ -27,7 +27,7 @@
     hs-source-dirs:  src
     build-depends:   base >= 4.3 && < 5,
                      cabal-macosx == 0.1.*,
-                     reactive-banana >= 0.4.2.0 && < 0.5,
+                     reactive-banana >= 0.4.3.0 && < 0.5,
                      wx==0.12.*, wxcore==0.12.*
     extensions:      ExistentialQuantification
     exposed-modules: Reactive.Banana.WX
diff --git a/src/TicTacToe.hs b/src/TicTacToe.hs
--- a/src/TicTacToe.hs
+++ b/src/TicTacToe.hs
@@ -1,7 +1,7 @@
 {-----------------------------------------------------------------------------
     reactive-banana-wx
     
-    Example: A version of TicTacToe with silly interface elements
+    Example: A version of TicTacToe with eclectic interface elements
     Author:  Gideon Sireling
 ------------------------------------------------------------------------------}
 import Control.Monad
