if the name ordering was in a certain order. Added new example programs (dual, embed) and runtime tests for test-suite. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10177 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
488 B
Makefile
18 lines
488 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../preinst-swig
|
|
TARGET = embed
|
|
SRCS = example.c
|
|
INTERFACE = example.i
|
|
LUA_INTERP = embed.c
|
|
|
|
# this is a little different to normal as we have our own special interpreter
|
|
# which we want to static link
|
|
all::
|
|
$(MAKE) -f $(TOP)/Makefile $(SWIGLIB) SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
SWIGOPT='$(SWIGOPT)' TARGET='$(TARGET)' INTERFACE='example.i' LUA_INTERP='$(LUA_INTERP)' lua_static
|
|
|
|
clean::
|
|
$(MAKE) -f $(TOP)/Makefile lua_clean
|
|
|
|
check: all
|
|
|