Mercurial > code > home > repos > light9
diff light8/Makefile @ 114:d74caafb8ee5
now uses the new-style swig naming (_project.so instead of projectmodule.so)
author | drewp |
---|---|
date | Fri, 13 Jun 2003 06:13:10 +0000 |
parents | 0b86bf6808f8 |
children |
line wrap: on
line diff
--- a/light8/Makefile Thu Jun 12 17:12:11 2003 +0000 +++ b/light8/Makefile Fri Jun 13 06:13:10 2003 +0000 @@ -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