git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7880 626c5289-ae23-0410-ae9c-e8d60b6d4f22
25 lines
603 B
Makefile
25 lines
603 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../preinst-swig
|
|
SRCS =
|
|
TARGET = example
|
|
PLATFORM = LINUXLIBC6
|
|
INTERFACE = example.i
|
|
SWIGOPT = -c++
|
|
MODULA3SRCS = *.[im]3
|
|
|
|
all:: modula3
|
|
|
|
modula3::
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' modula3
|
|
m3ppinplace $(MODULA3SRCS)
|
|
# compilation of example_wrap.cxx is started by cm3
|
|
# $(CXX) -c $(TARGET)_wrap.cxx
|
|
mv example_wrap.cxx m3makefile $(MODULA3SRCS) src/
|
|
ln -sf ../example.h src/example.h
|
|
cm3
|
|
|
|
clean::
|
|
$(MAKE) -f $(TOP)/Makefile modula3_clean
|
|
|
|
check: all
|