├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── generate-boilerplate.pl └── maman ├── Makefile.am ├── maman-bar.c ├── maman-bar.h ├── maman-baz.c ├── maman-baz.h ├── maman-ibaz.c └── maman-ibaz.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/configure.ac -------------------------------------------------------------------------------- /generate-boilerplate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/generate-boilerplate.pl -------------------------------------------------------------------------------- /maman/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/Makefile.am -------------------------------------------------------------------------------- /maman/maman-bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-bar.c -------------------------------------------------------------------------------- /maman/maman-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-bar.h -------------------------------------------------------------------------------- /maman/maman-baz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-baz.c -------------------------------------------------------------------------------- /maman/maman-baz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-baz.h -------------------------------------------------------------------------------- /maman/maman-ibaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-ibaz.c -------------------------------------------------------------------------------- /maman/maman-ibaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/gi-library-boilerplate/HEAD/maman/maman-ibaz.h --------------------------------------------------------------------------------