Changed %module xx_yy_zz to generate xx-yy-zz.scm and

xx-yy-zz_wrap.c[xx] (and xx-yy-zz-clos.scm and xx-yy-zz-generic.scm if
using TinyCLOS).  Consistent with the "namifying" of other C
identifiers.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4535 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jonah Beckford 2003-03-15 15:19:00 +00:00
commit 6daf196bf4
13 changed files with 95 additions and 83 deletions

View file

@ -9,7 +9,7 @@ INCLUDE =
SWIGOPT =
CFLAGS =
all:: $(TARGET) example_generic.scm example_clos.scm
all:: $(TARGET) example-generic.scm example-clos.scm
csi.c:
$(MAKE) -f $(TOP)/Makefile TARGET='csi.c' \
@ -19,7 +19,7 @@ precsi.c: precsi.scm
$(MAKE) -f $(TOP)/Makefile TARGET='precsi.c' \
INTERFACE='$<' chicken
example_wrap.cxx example.scm example_generic.scm example_clos.scm: example.i
example_wrap.cxx example.scm example-generic.scm example-clos.scm: example.i
$(MAKE) -f $(TOP)/Makefile SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
INCLUDE='$(INCLUDE)' INTERFACE='example.i' chicken_cpp
@ -42,7 +42,7 @@ module:: $(CHICKSRCS) $(SRCS) $(CXXSRCS)
clean::
$(MAKE) -f $(TOP)/Makefile chicken_clean
rm -f $(CHICKGEN)
rm -f example.scm example_generic.scm example_clos.scm
rm -f example.scm example-generic.scm example-clos.scm
rm -f $(TARGET)
check:: all

View file

@ -85,9 +85,9 @@ public:
(display "----------------\n")
(display "
;; ALL generic methods must be included first
(include \"example_generic\")
(include \"example-generic\")
;; After generic methods are defined, can include TinyCLOS code
(include \"example_clos\")
(include \"example-clos\")
(define A-CIRCLE-SHAPE (make <example:Circle> %radius))
(-get-x- %shapeObject)

View file

@ -2,10 +2,10 @@
;; by SWIG.
;; All generic methods must be included first
(include "example_generic")
(include "example-generic")
;; After generic are defined, can include TinyCLOS code
(include "example_clos")
(include "example-clos")
;; ----- Object creation -----