diff --git a/Examples/guile/class/Makefile b/Examples/guile/class/Makefile index 189610800..0130e5fc1 100644 --- a/Examples/guile/class/Makefile +++ b/Examples/guile/class/Makefile @@ -6,7 +6,7 @@ INTERFACE = example.i TOP = ../.. check: build -# $(MAKE) -f $(TOP)/Makefile guile_run + $(MAKE) -f $(TOP)/Makefile guile_run build: $(MAKE) -f $(TOP)/Makefile CXXSRCS='$(CXXSRCS)' SWIG='$(SWIG)' \ diff --git a/Examples/guile/class/runme.scm b/Examples/guile/class/runme.scm new file mode 100644 index 000000000..6bd7bf299 --- /dev/null +++ b/Examples/guile/class/runme.scm @@ -0,0 +1,6 @@ + +(dynamic-call "scm_init_example_module" (dynamic-link "./libexample")) + +(format (current-error-port) "TODO: code to demonstrate the class example\n") + +(exit 0)