aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 10:48:25 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:39 +1000
commitd495fb19428bfc640aa4d0e9245bc8f23c31f380 (patch)
treeb80832b727b297f43584d274485742976e6d7529 /Makefile.in
parente68eadfbfe66d350b9656e3a4a91f7520e2bfba4 (diff)
downloadjimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.zip
jimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.tar.gz
jimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.tar.bz2
Bugs, features, tests
The result of boolean ops on doubles is an int *: e.g. 0.5 < 0.1 should be 0, not 0.1 Implement jimsh -e <cmd> Allow jim to be built in a different location *: e.g. mkdir build; cd build; ../configure ...; make jimsh Add dict.test
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index bf172e3..dac7c1a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -15,7 +15,8 @@ CFLAGS += -DJIM_TCL_COMPAT
# Emulate tinytcl
LIBJIM := libtcl6.a
-CFLAGS += -Wall -g -Os -I. @EXTRA_CFLAGS@
+CFLAGS += -Wall -g -Os -I@SRCDIR@ @EXTRA_CFLAGS@
+VPATH := @SRCDIR@
.EXPORT_ALL_VARIABLES:
@@ -50,8 +51,8 @@ $(LIBJIM): $(OBJS) $(EXTENSIONS_OBJS)
$(AR) cr $@ $^
$(RANLIB) $@
-load_extensions.c: make-jim-load-extensions.sh
- sh make-jim-load-extensions.sh $@ $(EXTENSIONS)
+load_extensions.c: @SRCDIR@/make-jim-load-extensions.sh
+ sh @SRCDIR@/make-jim-load-extensions.sh $@ $(EXTENSIONS)
install: