aboutsummaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2020-04-14tinyalsa: add plugin.h to install pathPatrick Lai
Export plugin.h so that it can be used by tinyalsa clients. Signed-off-by: Rohit kumar <rohitkr@codeaurora.org>
2019-05-11makefile: Don't overwrite CROSS_COMPILE variableLucas Tanure
Signed-off-by: Lucas Tanure <tanure@linux.com>
2019-04-11Move changelog check ver. from build systems to CIAlexandru N. Onea
This commit moves the changelog version check to the CI instead of the build systems. Rationale is: the failure to update the changelog is not a build failure / issue but rather an integration failure and it should be detected at integration testing. The closest to integration testing is the CI testing which is mandatory before pull requests and new features integration. Additionally, the old version.py script is removed because it is relying on the old version of include/tinyalsa/version.h where the TINYALSA_VERSION_STRING macro is defiend as an explicit string literal. Since now the version string is defined piece-wise and based on the individual version numbers, and since the introduction of version.sh and its use within meson build system to get the version from the version file, the old version.py script is obsolete.
2019-04-10Rename version-bump to just versionAlexandru N. Onea
2019-04-09Add check action to version-bump.sh; Activate checksAlexandru N. Onea
2019-04-09Initial version-bump.shAlexandru N. Onea
2019-01-13Added the 'attributes.h' headerTaylor Holberton
2016-12-04Added examples subdir to 'all' and 'clean' targetsTaylor Holberton
2016-11-24Fix install path of include filesDavid Wagner
They were installed under $prefix/ instead of $prefix/tinyalsa/ Signed-off-by: David Wagner <david.wagner@intel.com>
2016-11-22using install command instead of cp and mkdirTaylor Holberton
2016-10-02added INCDIR, LIBDIR, BINDIR and MANDIR for installationTaylor Holberton
2016-10-01Added DESTDIR to header installTaylor Holberton
2016-10-01added doxygen subdir to all targetsTaylor Holberton
2016-10-01put source files into src dirTaylor Holberton
2016-10-01cleaned up makefileTaylor Holberton
2016-10-01put programs into utils dirTaylor Holberton
2016-08-03Added default prefix variableTaylor Holberton
2016-08-03added install commandTaylor Holberton
2016-01-28build: Redo Makefile a bitArun Raghavan
A few changes: * Don't hardcode 'gcc' and use $(CC) instead * Split off CFLAGS/LDFLAGS so we can pick them up from the environment * Add a static library build
2012-12-14Makefile: remove tinypcminfo during cleanSimon Wilson
2012-12-03Add tinypcminfo utilitySimon Wilson
This uses the new pcm_params_* API.
2012-11-09Add -Wall to Makefile and fix warningsSimon Wilson
2012-10-24tinyalsa: Add a CROSS_COMPILE variable in the MakefileDimitris Papastamos
Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
2011-07-27Makefile: Don't error out of clean if already cleanMark Brown
2011-07-14Add tinycap utility to capture PCM riff/wave filesSimon Wilson
This adds a utility to capture audio with a specified number of parameters. Capturing continues until a signal is received (ctrl-c). Contains some contributions from Chris Kelly <c-kelly@ti.com>
2011-06-04Improve mixer supportSimon Wilson
- support get/set of multiple values - add parameter checking to functions - add api function to get control type - add tinymix utility to list mixer controls
2011-06-03Fix issues with tinyplaySimon Wilson
- Add to Android.mk - Add "all" rule to Makefile - Remove redundant old play code from tinyplay.c - Add error checking to tinyplay
2011-06-02Add tinyplay utility to play PCM riff/wave filesSimon Wilson
2011-06-02Add Makefile for libtinyalsaSimon Wilson