reactive-banana-wx 0.2.0.1 → 0.2.0.3
raw patch · 2 files changed
+11/−5 lines, 2 filesdep ~reactive-banana
Dependency ranges changed: reactive-banana
Files
- Makefile +6/−2
- reactive-banana-wx.cabal +5/−3
Makefile view
@@ -1,5 +1,6 @@-.PHONY: all clean+.PHONY: all clean open +APPS=Counter OBJ=dist/build COMPILE=ghc --make -outputdir $(OBJ) -i$(OBJ) -L$(OBJ) -isrc -i../reactive-banana/src @@ -11,4 +12,7 @@ all: Counter clean:- rm -rf $(APPS) obj/*.o obj/*.hi *.app *.exe *.manifest+ rm -rf $(APPS) $(OBJ)/*.o $(OBJ)/*.hi *.app *.exe *.manifest++open: Counter+ open Counter.app
reactive-banana-wx.cabal view
@@ -1,5 +1,5 @@ Name: reactive-banana-wx-Version: 0.2.0.1+Version: 0.2.0.3 Synopsis: Examples for the reactive-banana library, using wxHaskell. Description: This library provides some examples for the @reactive-banana@ library,@@ -22,7 +22,8 @@ Library hs-source-dirs: src- build-depends: base >= 4.2 && < 4.4, reactive-banana==0.2.*,+ build-depends: base >= 4.2 && < 4.4,+ reactive-banana >= 0.2.0.3 && < 0.3, wx==0.12.*, wxcore==0.12.* extensions: ExistentialQuantification exposed-modules: Reactive.Banana.WX@@ -30,7 +31,8 @@ Executable Counter hs-source-dirs: src main-is: Counter.hs- build-depends: base >= 4.2 && < 4.4, reactive-banana==0.2.*,+ build-depends: base >= 4.2 && < 4.4,+ reactive-banana >= 0.2.0.3 && < 0.3, wx==0.12.*, wxcore==0.12.* extensions: ExistentialQuantification