392f9b0cd1
Though it's rarely ever set.
123 lines
3.1 KiB
Makefile
123 lines
3.1 KiB
Makefile
# the monad-linux superproject
|
|
export MONAD=$(realpath $(CURDIR))
|
|
|
|
# location of powershell and coreclr folders
|
|
export PSLIB=$(MONAD)/lib/powershell
|
|
export CLRLIB=$(MONAD)/lib/coreclr
|
|
|
|
all: powershell-native powershell-managed
|
|
|
|
# managed code
|
|
|
|
powershell-managed:
|
|
mkdir -p $(PSLIB) $(CLRLIB)
|
|
cp -R $(MONAD)/src/monad-ext/coreclr/Runtime/* $(CLRLIB)
|
|
$(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
|
|
$(MAKE) -j -C src/monad-native test
|
|
$(MAKE) -j -C src/monad-native install
|
|
|
|
## will install to $(MONAD)/{bin,lib}
|
|
src/monad-native/Makefile:
|
|
cd src/monad-native && cmake -DCMAKE_INSTALL_PREFIX=$(MONAD) .
|
|
|
|
# one-time setup
|
|
|
|
tools/nuget.exe:
|
|
cd tools && wget 'https://dist.nuget.org/win-x86-commandline/latest/nuget.exe'
|
|
|
|
bootstrap: tools/nuget.exe
|
|
mono $< restore -PackagesDirectory tools
|
|
|
|
# run targets
|
|
|
|
export POWERSHELL_HOST=env TEMP=/tmp LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(MONAD)/lib:$(PSLIB) PSMODULEPATH=$(PSLIB)/Modules $(MONAD)/bin/powershell
|
|
export POWERSHELL=$(POWERSHELL_HOST) $(PSLIB)/powershell.exe
|
|
|
|
demo:
|
|
$(POWERSHELL) '"a","b","c","a","a" | Select-Object -Unique'
|
|
|
|
shell:
|
|
$(POWERSHELL)
|
|
|
|
# tests
|
|
|
|
test: test-pester
|
|
|
|
## TODO: fix this after refactoring bin/powershell
|
|
test-hashbang:
|
|
PATH=$(PATH):$(PSLIB) src/3rdparty/hashbang/script.ps1
|
|
|
|
## Pester tests for PowerShell - results in pester-tests.xml
|
|
## - see https://github.com/pester/Pester
|
|
## - requires $TEMP to be set
|
|
## - we cd because some tests rely on the current working directory
|
|
PESTER=$(MONAD)/src/pester-tests
|
|
test-pester:
|
|
$(POWERSHELL) 'invoke-pester $(PESTER) -OutputFile $(MONAD)/pester-tests.xml -OutputFormat NUnitXml'
|
|
|
|
## Pester self-tests
|
|
## - results in pester-self-tests.xml
|
|
test-pester-self:
|
|
$(POWERSHELL) 'cd $(PSLIB)/Modules/Pester/Functions; $$env:TEMP="/tmp"; invoke-pester -OutputFile $(MONAD)/pester-self-tests.xml -OutputFormat NUnitXml'
|
|
|
|
## tracing
|
|
## - use PAL_DBG_CHANNELS="+LOADER.TRACE" to enable CoreCLR tracing
|
|
## - use Set-PSDebug -Trace 2 to enable PowerShell tracing
|
|
|
|
# OMI
|
|
OMI=src/omi/Unix
|
|
OMI_FLAGS=--dev --enable-debug
|
|
$(OMI)/GNUmakefile:
|
|
cd $(OMI) && ./configure $(OMI_FLAGS)
|
|
|
|
OMISERVER=$(OMI)/output/bin/omiserver
|
|
$(OMISERVER): $(OMI)/GNUmakefile
|
|
$(MAKE) -j -C $(OMI)
|
|
|
|
## copy libpshost because OMI isn't configurable
|
|
MONAD_PROVIDER=src/monad-omi-provider
|
|
PSRP_OMI_PROVIDER=$(OMI)/output/lib/libpsrpomiprov.so
|
|
$(PSRP_OMI_PROVIDER): $(OMISERVER) powershell-native
|
|
cp lib/libpshost.a $(OMI)/output/lib
|
|
$(MAKE) -j -C $(MONAD_PROVIDER)
|
|
|
|
psrp: $(PSRP_OMI_PROVIDER)
|
|
|
|
## phony targets so that the recursive make is always invoked
|
|
.PHONY: $(OMISERVER) $(PSRP_OMI_PROVIDER)
|
|
|
|
# clean targets
|
|
|
|
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
|
|
|
|
distclean-monad:
|
|
$(MAKE) -C src/monad-build distclean
|
|
|
|
clean-native:
|
|
-$(MAKE) -C src/monad-native clean
|
|
|
|
distclean-native:
|
|
cd src/monad-native && git clean -fdx
|
|
|
|
clean-omi:
|
|
-$(MAKE) -C $(OMI) clean
|
|
|
|
distclean-omi:
|
|
-$(MAKE) -C $(OMI) distclean
|
|
|
|
clean-psrp:
|
|
-$(MAKE) -C $(MONAD_PROVIDER) clean
|