From cbe8a55428ef44675b1759e7d372feb144d9e13d Mon Sep 17 00:00:00 2001 From: antirez Date: Sun, 27 Feb 2005 21:49:53 +0000 Subject: documentation changes, makefile modified to build jim-win32.dll --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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: -- cgit v1.1