aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-18 08:31:25 +0000
committerantirez <antirez>2005-04-18 08:31:25 +0000
commitc2852ab7ad42b320fb64ba07fc644c5593c15adb (patch)
tree6203fe2f41e8561d62cc9a92a999658caa02ed16 /Makefile
parentcdb994e520658916f35015e6eacaf1a10a4f64ce (diff)
downloadjimtcl-c2852ab7ad42b320fb64ba07fc644c5593c15adb.zip
jimtcl-c2852ab7ad42b320fb64ba07fc644c5593c15adb.tar.gz
jimtcl-c2852ab7ad42b320fb64ba07fc644c5593c15adb.tar.bz2
First version of the Jim eventloop extension, exporting
[after], [vwait], and the C API to write other extensions using events. No win32 port for now, just posix. UDP extension will follow shortly and will be the first extension using the event loop.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index bda6866..47cbb27 100644
--- a/Makefile
+++ b/Makefile
@@ -79,6 +79,12 @@ jim-aio-1.0.so: jim-aio.xo
jim-posix-1.0.so: jim-posix.xo
$(LD) -G -z text -o $@ $< $(LIBS) -lc
+jim-eventloop-1.0.so: jim-eventloop.xo
+ $(LD) -G -z text -o $@ $< $(LIBS) -lc
+
+jim-udp-1.0.so: jim-udp.xo
+ $(LD) -G -z text -o $@ $< $(LIBS) -lc
+
jim-sqlite-1.0.so: jim-sqlite.xo
$(LD) -G -z text -o $@ $< $(LIBS) -lc -lsqlite
@@ -97,6 +103,8 @@ jim: $(JIM_OBJECTS)
readline: jim-readline-1.0.so
posix: jim-posix-1.0.so
+eventloop: jim-eventloop-1.0.so
+udp: jim-udp-1.0.so
sqlite: jim-sqlite-1.0.so
aio: jim-aio-1.0.so
aio-dll: jim-aio-1.0.dll