include $(s)/utils/Makefile
include $(s)/eval/Makefile
include $(s)/judge/Makefile
+
+ifdef CONFIG_SUBMIT
include $(s)/submit/Makefile
+endif
# And finally the default rules of the build system
include $(s)/build/Makebottom
New directory layout
~~~~~~~~~~~~~~~~~~~~
mop/ and public/ are broken
+sync with main libucw repo
Evaluator
~~~~~~~~~
# Default configuration file for MO-Eval
+# Compile the submit server
+Set("CONFIG_SUBMIT" => 1);
+
# Settings of libucw
UnSet("CONFIG_SHARED");
UnSet("CONFIG_UCW_THREADS");
# If your system doesn't contain GNU libc 2.3 or newer, it's recommended to let Sherlock
# use its own regex library (a copy of the glibc one), because the default regex library
# is likely to be crappy.
-Set("CONFIG_OWN_REGEX");
+UnSet("CONFIG_OWN_REGEX");
# If your system can't reset getopt with 'optind = 0', you need to compile our internal copy
# of GNU libc's getopt. This should not be necessary on GNU libc.