Fix recursive make test targets

This commit is contained in:
Andrew Schwartzmeyer 2015-10-26 12:30:22 -07:00
parent 36189b49a9
commit 9a4c774816

View file

@ -7,12 +7,14 @@ all: powershell-native powershell-managed
# managed code
powershell-managed:
$(MAKE) -j -C src/monad-build all test
$(MAKE) -j -C src/monad-build
$(MAKE) -j -C src/monad-build test
# native code
powershell-native: src/monad-native/Makefile
$(MAKE) -j -C src/monad-native all test
$(MAKE) -j -C src/monad-native
$(MAKE) -j -C src/monad-native test
src/monad-native/Makefile:
cd src/monad-native && cmake .