mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
The kernel driver has some hints you can send to it that changes parser behaviour. This patch exposes that functionality to the user. (This patch also includes minor fixes for documentation, GTK warnings and whitespace.) Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
24 lines
672 B
Makefile
24 lines
672 B
Makefile
EXTRA_DIST = gitcompile README
|
|
AM_CFLAGS = @GTK3_CFLAGS@ -Wno-deprecated-declarations
|
|
bin_PROGRAMS = hdajackretask
|
|
man_MANS =
|
|
hdajackretask_SOURCES = main-gtk.c sysfs-pin-configs.c apply-changes.c
|
|
hdajackretask_LDADD = @GTK3_LIBS@
|
|
|
|
noinst_HEADERS = apply-changes.h sysfs-pin-configs.h
|
|
|
|
BUILT_SOURCES = README.generated.h
|
|
nodist_hdajackretask_SOURCES = README.generated.h
|
|
CLEANFILES = README.generated.h
|
|
|
|
README.generated.h:
|
|
sed 's/\\/\\\\/g;s/"/\\"/g;s/^/"/;s/$$/\\n"/;' README >$@
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../distdir/hdajackretask
|
|
@mkdir -p ../distdir/hdajackretask
|
|
@cp -RLpv $(distdir)/* ../distdir/hdajackretask
|
|
@rm -rf $(distdir)
|
|
|