/tags/rel-1.3.35/Examples/tcl/constants/Makefile

# · Makefile · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · 0be19c3b53da6f7965be4738dfbeeff6 MD5 · raw file

  1. TOP = ../..
  2. SWIG = $(TOP)/../preinst-swig
  3. SRCS =
  4. TARGET = my_tclsh
  5. DLTARGET = example
  6. INTERFACE = example.i
  7. all::
  8. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  9. TARGET='$(DLTARGET)' INTERFACE='$(INTERFACE)' tcl
  10. static::
  11. $(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
  12. TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' tclsh
  13. clean::
  14. $(MAKE) -f $(TOP)/Makefile tcl_clean
  15. check: all