Yurttas/PL/SL/python/docs/core-python-programming/doc/152/ext/module-defn-example.html
2.3 Example
Here is a more complicated example from Modules/Setup.in:
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
Send comments on this document to python-docs@python.org.