├── CHANGELOG.txt ├── Makefile.pdlibbuilder ├── README.md ├── tests ├── Makefile ├── _template_ │ ├── Makefile │ ├── _template_-help.pd │ ├── _template_-meta.pd │ └── _template_.c ├── make-from-template.sh ├── multifor │ ├── Makefile │ ├── README.md │ ├── multifor-help.pd │ ├── multifor-meta.pd │ ├── multiforA.c │ └── multiforB.c ├── multilib │ ├── Makefile │ ├── README.md │ ├── multilib-help.pd │ ├── multilib-meta.pd │ ├── multilib.c │ ├── multilibA.c │ └── multilibB.c ├── multiple │ ├── Makefile │ ├── README.md │ ├── multiple-help.pd │ ├── multiple-meta.pd │ ├── multipleA.c │ └── multipleB.c ├── multiplexx │ ├── Makefile │ ├── README.md │ ├── multiplexx-help.pd │ ├── multiplexx-meta.pd │ ├── multiplexxA.cpp │ └── multiplexxB.c ├── multishared │ ├── Makefile │ ├── README.md │ ├── multishared-help.pd │ ├── multishared-meta.pd │ ├── multishared.h │ ├── multisharedA.c │ ├── multisharedB.c │ └── shared.c ├── single │ ├── Makefile │ ├── README.md │ ├── single-help.pd │ ├── single-meta.pd │ └── single.c ├── subdir │ ├── Makefile │ ├── README.md │ ├── src │ │ ├── subdir.c │ │ └── subdir~.c │ ├── subdir-help.pd │ ├── subdir-meta.pd │ └── subdir~-help.pd └── test-patches.sh └── tips-tricks.md /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/README.md -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/_template_/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/_template_/Makefile -------------------------------------------------------------------------------- /tests/_template_/_template_-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/_template_/_template_-help.pd -------------------------------------------------------------------------------- /tests/_template_/_template_-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/_template_/_template_-meta.pd -------------------------------------------------------------------------------- /tests/_template_/_template_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/_template_/_template_.c -------------------------------------------------------------------------------- /tests/make-from-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/make-from-template.sh -------------------------------------------------------------------------------- /tests/multifor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/Makefile -------------------------------------------------------------------------------- /tests/multifor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/README.md -------------------------------------------------------------------------------- /tests/multifor/multifor-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/multifor-help.pd -------------------------------------------------------------------------------- /tests/multifor/multifor-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/multifor-meta.pd -------------------------------------------------------------------------------- /tests/multifor/multiforA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/multiforA.c -------------------------------------------------------------------------------- /tests/multifor/multiforB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multifor/multiforB.c -------------------------------------------------------------------------------- /tests/multilib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/Makefile -------------------------------------------------------------------------------- /tests/multilib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/README.md -------------------------------------------------------------------------------- /tests/multilib/multilib-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/multilib-help.pd -------------------------------------------------------------------------------- /tests/multilib/multilib-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/multilib-meta.pd -------------------------------------------------------------------------------- /tests/multilib/multilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/multilib.c -------------------------------------------------------------------------------- /tests/multilib/multilibA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/multilibA.c -------------------------------------------------------------------------------- /tests/multilib/multilibB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multilib/multilibB.c -------------------------------------------------------------------------------- /tests/multiple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/Makefile -------------------------------------------------------------------------------- /tests/multiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/README.md -------------------------------------------------------------------------------- /tests/multiple/multiple-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/multiple-help.pd -------------------------------------------------------------------------------- /tests/multiple/multiple-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/multiple-meta.pd -------------------------------------------------------------------------------- /tests/multiple/multipleA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/multipleA.c -------------------------------------------------------------------------------- /tests/multiple/multipleB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiple/multipleB.c -------------------------------------------------------------------------------- /tests/multiplexx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/Makefile -------------------------------------------------------------------------------- /tests/multiplexx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/README.md -------------------------------------------------------------------------------- /tests/multiplexx/multiplexx-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/multiplexx-help.pd -------------------------------------------------------------------------------- /tests/multiplexx/multiplexx-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/multiplexx-meta.pd -------------------------------------------------------------------------------- /tests/multiplexx/multiplexxA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/multiplexxA.cpp -------------------------------------------------------------------------------- /tests/multiplexx/multiplexxB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multiplexx/multiplexxB.c -------------------------------------------------------------------------------- /tests/multishared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/Makefile -------------------------------------------------------------------------------- /tests/multishared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/README.md -------------------------------------------------------------------------------- /tests/multishared/multishared-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/multishared-help.pd -------------------------------------------------------------------------------- /tests/multishared/multishared-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/multishared-meta.pd -------------------------------------------------------------------------------- /tests/multishared/multishared.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void multishared_foo(t_float f); 4 | -------------------------------------------------------------------------------- /tests/multishared/multisharedA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/multisharedA.c -------------------------------------------------------------------------------- /tests/multishared/multisharedB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/multisharedB.c -------------------------------------------------------------------------------- /tests/multishared/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/multishared/shared.c -------------------------------------------------------------------------------- /tests/single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/single/Makefile -------------------------------------------------------------------------------- /tests/single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/single/README.md -------------------------------------------------------------------------------- /tests/single/single-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/single/single-help.pd -------------------------------------------------------------------------------- /tests/single/single-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/single/single-meta.pd -------------------------------------------------------------------------------- /tests/single/single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/single/single.c -------------------------------------------------------------------------------- /tests/subdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/Makefile -------------------------------------------------------------------------------- /tests/subdir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/README.md -------------------------------------------------------------------------------- /tests/subdir/src/subdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/src/subdir.c -------------------------------------------------------------------------------- /tests/subdir/src/subdir~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/src/subdir~.c -------------------------------------------------------------------------------- /tests/subdir/subdir-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/subdir-help.pd -------------------------------------------------------------------------------- /tests/subdir/subdir-meta.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/subdir-meta.pd -------------------------------------------------------------------------------- /tests/subdir/subdir~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/subdir/subdir~-help.pd -------------------------------------------------------------------------------- /tests/test-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tests/test-patches.sh -------------------------------------------------------------------------------- /tips-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pure-data/pd-lib-builder/HEAD/tips-tricks.md --------------------------------------------------------------------------------