chiark / gitweb /
@@ -18,6 +18,8 @@
[chiark-tcl.git] / base / common.make
1 # base code for various Tcl extensions
2 # Copyright 2006 Ian Jackson
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17 # 02110-1301, USA.
18
19
20 VERSION ?=      1
21 FAMILY ?=       chiark_tcl
22 TCL_VERSION ?=  8.3
23 TCL_INCLUDEDIR ?= /usr/include/tcl$(TCL_VERSION)
24
25 OPTIMISE ?=             -O2
26 TCL_MEM_DEBUG ?=        -DTCL_MEM_DEBUG
27
28 TCMDIFGEN ?=    $(BASE_DIR)/tcmdifgen
29 BASE_TCT ?=     $(BASE_DIR)/base.tct
30 BASE_SHLIB ?=   lib$(FAMILY)-$(VERSION)
31
32 CFLAGS +=       -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Werror \
33                 $(OPTIMISE)
34
35 ifeq ($(shell $(CC) -Wno-pointer-sign -E -x c /dev/null >/dev/null || echo x),)
36 CFLAGS +=       -Wno-pointer-sign
37 endif
38
39 ifeq ($(shell $(CC) -fno-strict-aliasing -E -x c /dev/null >/dev/null || echo x),)
40 CFLAGS +=       -fno-strict-aliasing
41 endif
42
43 CPPFLAGS +=     -I$(TCL_INCLUDEDIR) -I$(BASE_DIR)
44 CPPFLAGS +=     $(TCL_MEM_DEBUG)
45
46 AUTOS +=        $(AUTO_SRCS) $(AUTO_HDRS)
47
48 default:        all
49