summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-06-23 03:51:52 +0000
committerChristopher Davis <loafier@gmail.com>2006-06-23 03:51:52 +0000
commit4d33c04f15e60e21a537edd635c9ac130312a3cb (patch)
tree9530c793afd67ef5c8319c452d33011c7f7fe197 /Makefile
parentc76f11d4ead827d8e87e265131a3dee534bc0792 (diff)
Began work on signal handler/map system. It seems to be working;
however, events with varying <cmd> text aren't handled because it does a straight lookup in the hashtable with the signal name to locate the argument list. Will need to change the system to accomodate the <cmd> events. The basics for reference arg support is there but not well tested. git-svn-id: http://svn.irssi.org/repos/irssi-python@4289 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d706a0f..9cb3d0f 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,9 @@ pyobjects.a:
%.o: %.c
$(CC) -c $< $(CFLAGS)
+signalmap:
+ python sig2code.py < ~/irssi-0.8.10/docs/signals.txt > pysigmap.h
+
clean:
rm -f *.o *.so
cd objects/ && make clean