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
|
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 \
|
|
|
|
echo $$type; $(RUNTIME) $(build_lib) $$type >/dev/null || exit 1; done
|