Changeset - d74caafb8ee5
[Not reviewed]
default
0 1 0
drewp - 22 years ago 2003-06-13 06:13:10

now uses the new-style swig naming (_project.so instead of projectmodule.so)
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
light8/Makefile
Show inline comments
 
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
0 comments (0 inline, 0 general)