Lines Matching full:demo
33 module1 = Extension('demo',
34 sources = ['demo.c'])
38 description = 'This is a demo package',
42 With this :file:`setup.py`, and a file :file:`demo.c`, running ::
46 will compile :file:`demo.c`, and produce an extension module named ``demo`` in
49 :file:`demo.so` or :file:`demo.pyd`.
64 defines an extension named ``demo`` which is build by compiling a single source
65 file, :file:`demo.c`.
75 module1 = Extension('demo',
81 sources = ['demo.c'])
85 description = 'This is a demo package',
90 This is really just a demo package.
102 gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -DMAJOR_VERSION=1 -DMINOR_VERSION=0 -I/usr/local/include -I/usr/local/include/python2.2 -c demo.c -o build/temp.linux-i686-2.2/demo.o
104 gcc -shared build/temp.linux-i686-2.2/demo.o -L/usr/local/lib -ltcl83 -o build/lib.linux-i686-2.2/demo.so