PageRenderTime 81ms CodeModel.GetById 27ms RepoModel.GetById 4ms app.codeStats 0ms

/tags/rel-1-3-25/SWIG/Examples/tcl/contract/Makefile

#
Makefile | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | ba1d0edd21edbc093f9fb2acf1ac8f88 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. TOP = ../..
  2. SWIG = $(TOP)/../swig
  3. SRCS = example.c
  4. TARGET = my_tclsh
  5. DLTARGET = example
  6. INTERFACE = example.i
  7. SWIGOPT =
  8. all::
  9. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  10. TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl
  11. static::
  12. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' SWIGOPT='$(SWIGOPT)' \
  13. TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh
  14. clean::
  15. $(MAKE) -f $(TOP)/Makefile tcl_clean
  16. check: all