import source from 1.3.40
[external/swig.git] / Examples / guile / multivalue / Makefile
1 TOP        = ../..
2 SWIG       = $(TOP)/../preinst-swig
3 SRCS       = example.c
4 TARGET     = example
5 INTERFACE  = example.i
6
7 all::
8         $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
9         TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' guile
10
11 static::
12         $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
13         TARGET='my-guile' INTERFACE='$(INTERFACE)' guile_static
14
15 clean::
16         $(MAKE) -f $(TOP)/Makefile TARGET='$(TARGET)' guile_clean
17
18 check: all