From 47f9a0cdac7b1258b43a92e91a5f9da1d90799cc Mon Sep 17 00:00:00 2001 From: Adrian Herrera Date: Wed, 6 Apr 2016 09:51:45 +1000 Subject: [PATCH] Added cabal clean, configure and build commands to the bindings Makefile This ensures that c2hs is called when const_generator.py generates code for the other language bindings --- bindings/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/Makefile b/bindings/Makefile index 652a6457..2e29e365 100644 --- a/bindings/Makefile +++ b/bindings/Makefile @@ -18,6 +18,7 @@ all: cd go && $(MAKE) gen_const cd java && $(MAKE) gen_const python const_generator.py dotnet + cd haskell && cabal configure && cabal build samples: expected python @@ -54,6 +55,7 @@ sample_diff: FORCE clean: rm -rf $(TMPDIR) cd python && $(MAKE) clean + cd haskell && cabal clean check: make -C python check