├── .gitignore ├── LICENSE.txt ├── README.rst ├── example1 ├── Makefile └── helloworld.c ├── example2 ├── Makefile └── counter.c ├── example3 ├── Makefile └── counter.c ├── example4 ├── Makefile └── xfade~.c ├── legacy ├── HOWTO-externals-de.tex ├── Makefile └── pd-externals-HOWTO.tex └── pd-lib-builder ├── CHANGELOG.txt ├── Makefile.pdlibbuilder ├── README.md └── tips-tricks.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/README.rst -------------------------------------------------------------------------------- /example1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example1/Makefile -------------------------------------------------------------------------------- /example1/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example1/helloworld.c -------------------------------------------------------------------------------- /example2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example2/Makefile -------------------------------------------------------------------------------- /example2/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example2/counter.c -------------------------------------------------------------------------------- /example3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example3/Makefile -------------------------------------------------------------------------------- /example3/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example3/counter.c -------------------------------------------------------------------------------- /example4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example4/Makefile -------------------------------------------------------------------------------- /example4/xfade~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/example4/xfade~.c -------------------------------------------------------------------------------- /legacy/HOWTO-externals-de.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/legacy/HOWTO-externals-de.tex -------------------------------------------------------------------------------- /legacy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/legacy/Makefile -------------------------------------------------------------------------------- /legacy/pd-externals-HOWTO.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/legacy/pd-externals-HOWTO.tex -------------------------------------------------------------------------------- /pd-lib-builder/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/pd-lib-builder/CHANGELOG.txt -------------------------------------------------------------------------------- /pd-lib-builder/Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/pd-lib-builder/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /pd-lib-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/pd-lib-builder/README.md -------------------------------------------------------------------------------- /pd-lib-builder/tips-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/externals-howto/HEAD/pd-lib-builder/tips-tricks.md --------------------------------------------------------------------------------