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