PageRenderTime 27ms CodeModel.GetById 22ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/guile/multimap/Makefile

#
Makefile | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | 156856309c4de848a32dde46e5451470 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1TOP        = ../..
 2SWIG       = $(TOP)/../swig
 3SRCS       = example.c
 4TARGET     = example
 5INTERFACE  = example.i
 6
 7all::
 8	$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
 9	TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' guile
10
11static::
12	$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
13	TARGET='my-guile' INTERFACE='$(INTERFACE)' guile_static
14
15clean::
16	rm -f *_wrap* *.o *~ *.so my-guile .~* core
17
18check: all