2014-08-13 10:39:27 +01:00
|
|
|
thisdir = tools/monop
|
|
|
|
SUBDIRS =
|
|
|
|
include ../../build/rules.make
|
|
|
|
|
|
|
|
PROGRAM = monop.exe
|
2015-04-07 09:35:12 +01:00
|
|
|
LOCAL_MCS_FLAGS += -d:NO_AUTHENTICODE,STATIC,NO_SYMBOL_WRITER
|
2016-08-03 10:59:49 +00:00
|
|
|
LIB_REFS = System
|
2014-08-13 10:39:27 +01:00
|
|
|
|
|
|
|
CLEAN_FILES = monop.exe monop2.exe *.mdb
|
|
|
|
|
|
|
|
include ../../build/executable.make
|
2015-06-10 19:29:21 -04:00
|
|
|
|
|
|
|
run-test-local : basic-tests
|
|
|
|
|
|
|
|
basic-tests:
|
|
|
|
for type in System.Array System.String 'System.Collections.Generic.List`1'; do \
|
2016-02-22 11:00:01 -05:00
|
|
|
echo $$type; MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(build_lib) $$type >/dev/null || exit 1; done
|