diff --git a/Makefile.am b/Makefile.am index fba2dfd..27d616d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS = src docs +SUBDIRS = src docs share EXTRA_DIST = CHANGELOG COPYING README.md diff --git a/configure.ac b/configure.ac index ab82141..69554b8 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.69]) AC_INIT([oshu], [0.1.0], [fmang+oshu@mg0.fr]) AC_CONFIG_SRCDIR([src/oshu.c]) AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_FILES([Makefile src/Makefile docs/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile docs/Makefile share/Makefile]) AM_INIT_AUTOMAKE([foreign]) # Checks for programs. diff --git a/share/CREDITS b/share/CREDITS new file mode 100644 index 0000000..5f6c091 --- /dev/null +++ b/share/CREDITS @@ -0,0 +1,7 @@ +The hit.wav sound is part of a sample set recorded from the TR-808 drum +machine, recommended by my friend Vivix. + +The full sample set can be found at: +http://smd-records.com/tr808/?page_id=14 + +Thanks for sharing! diff --git a/share/Makefile.am b/share/Makefile.am new file mode 100644 index 0000000..ce18e83 --- /dev/null +++ b/share/Makefile.am @@ -0,0 +1,3 @@ +dist_pkgdata_DATA = hit.wav + +EXTRA_DIST = CREDITS diff --git a/share/hit.wav b/share/hit.wav new file mode 100644 index 0000000..e8d81fc Binary files /dev/null and b/share/hit.wav differ