# HG changeset patch # User drewp # Date 2003-06-13 06:13:10 # Node ID d74caafb8ee5d2859e305cc5a6f6f392b1231330 # Parent b6ccc325f1eca4ec13651bcc0ad61a4b5fa5d02b now uses the new-style swig naming (_project.so instead of projectmodule.so) diff --git a/light8/Makefile b/light8/Makefile --- a/light8/Makefile +++ b/light8/Makefile @@ -1,20 +1,20 @@ LIB=/usr/local/lib INC=-I/usr/local/include/python2.2 -go: parportmodule.so FlyingFader.py serportmodule.so +go: _parport.so FlyingFader.py _serport.so result="your modules and links are now up to date" FlyingFader.py: ln -s ../Widgets/FlyingFader.py -parportmodule.so: parport_wrap.c - gcc -shared ${INC} parport_wrap.c parport.c -o parportmodule.so +_parport.so: parport_wrap.c + gcc -shared ${INC} parport_wrap.c parport.c -o _parport.so parport_wrap.c: parport.c parport.i swig -python parport.i -serportmodule.so: serport_wrap.c - gcc -shared -O ${INC} serport_wrap.c -o serportmodule.so +_serport.so: serport_wrap.c + gcc -shared -O ${INC} serport_wrap.c -o _serport.so serport_wrap.c: serport.i swig -python serport.i