aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-17 07:22:03 +0000
committerantirez <antirez>2005-03-17 07:22:03 +0000
commitec5a41ceb2faf4cd712cd3aea25d79002e7caf39 (patch)
treef033d64dba4bb7d76e2a6495804361d38841df1d /Makefile
parentb8dd7d32a1d21cfa45377a36a127216c91d2e8e9 (diff)
downloadjimtcl-ec5a41ceb2faf4cd712cd3aea25d79002e7caf39.zip
jimtcl-ec5a41ceb2faf4cd712cd3aea25d79002e7caf39.tar.gz
jimtcl-ec5a41ceb2faf4cd712cd3aea25d79002e7caf39.tar.bz2
The interactive prompt can now used to type/paste multi line scripts.
Every line is appended to the previous until the script does not appear to be complete (tested by Jim_IsScriptComplete()).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8f0ebea..462ad4c 100644
--- a/Makefile
+++ b/Makefile
@@ -15,8 +15,9 @@
SHELL = /bin/sh
RM = rm -f
+OPT = -O2
LDFLAGS = $(PROFILE)
-CFLAGS = -Wall -Wwrite-strings -W -O2 -g $(PROFILE)
+CFLAGS = -Wall -Wwrite-strings -W $(OPT) -g $(PROFILE)
AR = /usr/bin/ar
RANLIB = /usr/bin/ranlib
LIBPATH =-L.
@@ -92,6 +93,11 @@ commit:
cvs2cl
cvs commit
+bak:
+ cp -f jim.c jim.c.orig
+ cp -f jimsh.c jimsh.c.orig
+ cp -f jim.h jim.h.orig
+
# Dependences
jim-posix.o: jim-posix.c jim.h
jim-win32com.o: jim-win32com.c jim.h