Fix distribution of .NET

I still really don't like copying this around, but until we get using
DNX, it's probably our best bet. Now, at least, the host can expect
lib/{powershell,coreclr}.
This commit is contained in:
Andrew Schwartzmeyer 2015-10-28 10:04:39 -07:00
parent 74b35fb6cc
commit d92a3ea5b3

View file

@ -11,7 +11,7 @@ all: powershell-native powershell-managed
powershell-managed:
mkdir -p $(PSLIB) $(CLRLIB)
cp -R $(MONAD)/src/monad-ext/coreclr/Runtime $(CLRLIB)
cp -R $(MONAD)/src/monad-ext/coreclr/Runtime/* $(CLRLIB)
$(MAKE) -j -C src/monad-build
$(MAKE) -j -C src/monad-build test
@ -96,6 +96,7 @@ clean: clean-monad
-rm *-tests.xml
distclean: distclean-monad distclean-native distclean-omi clean
-rm -rf $(CLRLIB)
clean-monad:
$(MAKE) -C src/monad-build clean