├── .gitignore ├── AUTHORS ├── COPYRIGHT ├── Makefile.am ├── README ├── README.md ├── VERSION ├── autogen.sh ├── config_m4 ├── debug.m4 ├── profiling.m4 └── versioning.m4 ├── configure.ac ├── doc └── .empty ├── src ├── Makefile.am ├── distributable_header.h ├── internal_header.h ├── lib1.c ├── my_program.c └── subdir │ ├── Makefile.am │ └── sublib.c └── test ├── Makefile.am └── test1.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | (c) Your organization 2015 2 | 3 | 4 | Marc Sune 5 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.0.1 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/autogen.sh -------------------------------------------------------------------------------- /config_m4/debug.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/config_m4/debug.m4 -------------------------------------------------------------------------------- /config_m4/profiling.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/config_m4/profiling.m4 -------------------------------------------------------------------------------- /config_m4/versioning.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/config_m4/versioning.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/distributable_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/distributable_header.h -------------------------------------------------------------------------------- /src/internal_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/internal_header.h -------------------------------------------------------------------------------- /src/lib1.c: -------------------------------------------------------------------------------- 1 | 2 | //Empty, add code here... 3 | -------------------------------------------------------------------------------- /src/my_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/my_program.c -------------------------------------------------------------------------------- /src/subdir/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/subdir/Makefile.am -------------------------------------------------------------------------------- /src/subdir/sublib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/src/subdir/sublib.c -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msune/autotools-skeleton/HEAD/test/test1.c --------------------------------------------------------------------------------