mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
The gitcompile script is used from the top-level Makefile, so it needs to be included in the tarball. Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Takashi Iwai <tiwai@suse.de>
13 lines
443 B
Makefile
13 lines
443 B
Makefile
EXTRA_DIST = gitcompile
|
|
MYNAME = hdajacksensetest
|
|
AUTOMAKE_OPTIONS = foreign
|
|
bin_PROGRAMS = hdajacksensetest
|
|
AM_CFLAGS = @GLIB_CFLAGS@ -I "../hdajackretask/" -I "../hda-verb/"
|
|
hdajacksensetest_SOURCES = hdajacksensetest.c ../hdajackretask/sysfs-pin-configs.c
|
|
hdajacksensetest_LDADD = @GLIB_LIBS@
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../distdir/$(MYNAME)
|
|
@mkdir -p ../distdir/$(MYNAME)
|
|
@cp -RLpv $(distdir)/* ../distdir/$(MYNAME)
|
|
@rm -rf $(distdir)
|