mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 05:41:04 +00:00
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
This commit is contained in:
parent
74aaf3b321
commit
47f9a0cdac
|
@ -18,6 +18,7 @@ all:
|
||||||
cd go && $(MAKE) gen_const
|
cd go && $(MAKE) gen_const
|
||||||
cd java && $(MAKE) gen_const
|
cd java && $(MAKE) gen_const
|
||||||
python const_generator.py dotnet
|
python const_generator.py dotnet
|
||||||
|
cd haskell && cabal configure && cabal build
|
||||||
|
|
||||||
samples: expected python
|
samples: expected python
|
||||||
|
|
||||||
|
@ -54,6 +55,7 @@ sample_diff: FORCE
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(TMPDIR)
|
rm -rf $(TMPDIR)
|
||||||
cd python && $(MAKE) clean
|
cd python && $(MAKE) clean
|
||||||
|
cd haskell && cabal clean
|
||||||
|
|
||||||
check:
|
check:
|
||||||
make -C python check
|
make -C python check
|
||||||
|
|
Loading…
Reference in a new issue