GNU Info

Info Node: (python2.1-ext.info)Example

(python2.1-ext.info)Example


Next: Distributing your extension modules Prev: Module Definition Options Up: Building C and C++ Extensions on UNIX
Enter node , (file) or (file)node

Example
=======

Here is a more complicated example from `Modules/Setup.dist':

     GMP=/ufs/guido/src/gmp
     mpz mpzmodule.c -I$(GMP) $(GMP)/libgmp.a

which could also be written as:

     mpz mpzmodule.c -I$(GMP) -L$(GMP) -lgmp


automatically generated by info2www version 1.2.2.9