PageRenderTime 49ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/tcl/contract/Makefile

#
Makefile | 20 lines | 16 code | 4 blank | 0 comment | 0 complexity | 7496ce54609d42387f863e772bca1ea6 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. TOP = ../..
  2. SWIG = $(TOP)/../preinst-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