Add skeleton for run test for Guile class example

This commit is contained in:
William S Fulton 2013-05-09 20:03:50 +01:00
commit 199c1f3249
2 changed files with 7 additions and 1 deletions

View file

@ -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)' \

View file

@ -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)