aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez>2005-02-27 21:49:53 +0000
committerantirez <antirez>2005-02-27 21:49:53 +0000
commitcbe8a55428ef44675b1759e7d372feb144d9e13d (patch)
treebf0934c60276950228125d0787bd8627ed42a9b4 /Makefile
parent8232ab72bb208c7e982455ce4421f5621e2981f5 (diff)
downloadjimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.zip
jimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.tar.gz
jimtcl-cbe8a55428ef44675b1759e7d372feb144d9e13d.tar.bz2
documentation changes, makefile modified to build jim-win32.dll
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8b2d048..918c741 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
.SUFFIXES:
-.SUFFIXES: .c .so .xo .o
+.SUFFIXES: .c .so .xo .o .dll
SHELL= /bin/sh
LD= ld
@@ -37,10 +37,14 @@ profile:
.c.xo:
$(CC) -I. $(CFLAGS) $(DEFS) -fPIC -c $< -o $@
+.o.dll:
+ $(CC) -shared -o $@ $<
+
jim: $(JIM_OBJECTS)
$(CC) $(LDFLAGS) -o jim $(JIM_OBJECTS) -ldl
posix: jim-posix.so
+win32: jim-win32.dll
extensions: posix
clean: