mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
Start to use autotools as build system, just like the other programs in the alsa-tools suite. Signed-off-by: David Henningsson <david.henningsson@canonical.com>
20 lines
561 B
Makefile
20 lines
561 B
Makefile
EXTRA_DIST = gitcompile README
|
|
AM_CFLAGS = @GTK3_CFLAGS@
|
|
bin_PROGRAMS = hdajackretask
|
|
man_MANS =
|
|
hdajackretask_SOURCES = main-gtk.c sysfs-pin-configs.c apply-changes.c
|
|
hdajackretask_LDADD = @GTK3_LIBS@
|
|
|
|
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 >$@
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../distdir/hdajackretask
|
|
@mkdir -p ../distdir/hdajackretask
|
|
@cp -RLpv $(distdir)/* ../distdir/hdajackretask
|
|
@rm -rf $(distdir)
|
|
|