diff --git a/tools/Makefile.am b/tools/Makefile.am deleted file mode 100644 index da48543f1..000000000 --- a/tools/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -SUBDIRS = logger topology eqctl -TESTDIR = test/topology - -tests: - $(MAKE) -C $(TESTDIR) diff --git a/tools/autogen.sh b/tools/autogen.sh deleted file mode 100755 index 3b379b601..000000000 --- a/tools/autogen.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -libtoolize -c --force -aclocal -I m4 --install -autoconf -Wall -autoheader -automake -a --copy --foreign --add-missing diff --git a/tools/configure.ac b/tools/configure.ac deleted file mode 100644 index 829937a69..000000000 --- a/tools/configure.ac +++ /dev/null @@ -1,38 +0,0 @@ - -AC_PREREQ([2.69]) -AC_INIT([sof-tools], [1.0.1]) -AM_INIT_AUTOMAKE([foreign]) -AC_CONFIG_SRCDIR([logger/logger.c]) -AC_CONFIG_SRCDIR([eqctl/eqctl.c]) -AC_CONFIG_HEADERS([config.h]) -AC_CHECK_HEADER([sof/uapi/abi.h]) -AC_CHECK_PROG([XARGS], xargs, "yes", "no", [$PATH]) -AM_CONDITIONAL(XARGS, test "$XARGS" = "yes") - -AC_CANONICAL_HOST - -dnl Initialize maintainer mode -AM_MAINTAINER_MODE([enable]) - -AC_PROG_CC - -AC_OUTPUT([ - Makefile - logger/Makefile - eqctl/Makefile - topology/Makefile - topology/common/Makefile - topology/platform/Makefile - topology/platform/intel/Makefile - topology/platform/common/Makefile - topology/m4/Makefile - topology/sof/Makefile - test/topology/Makefile -]) - -echo " - -prefix: ${prefix} -Compiler: ${CC} -CFLAGS: ${CFLAGS} -" diff --git a/tools/eqctl/Makefile.am b/tools/eqctl/Makefile.am deleted file mode 100644 index c1759c05b..000000000 --- a/tools/eqctl/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -LDADD = -lasound - -bin_PROGRAMS = sof-eqctl - -sof_eqctl_SOURCES = \ - eqctl.c diff --git a/tools/logger/Makefile.am b/tools/logger/Makefile.am deleted file mode 100644 index 2a154135c..000000000 --- a/tools/logger/Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ -bin_PROGRAMS = sof-logger - -sof_logger_SOURCES = \ - logger.c \ - convert.c - -sof_logger_CFLAGS = \ - -I ../../src/include \ - -I ../../ \ - -Wall \ - -Werror diff --git a/tools/test/topology/Makefile.am b/tools/test/topology/Makefile.am deleted file mode 100644 index be2830bd2..000000000 --- a/tools/test/topology/Makefile.am +++ /dev/null @@ -1,32 +0,0 @@ - -# -# Dependencies -# - -if XARGS -export USE_XARGS=yes -endif - -DEPS = \ - ../../topology/platform/intel/*.m4 \ - ../../topology/common/*.m4 \ - ../../topology/m4/*.m4 \ - ../../topology/sof/*.m4 - -# Uncomment the following line if you want to debug conf files -.PRECIOUS: %.conf - -all : *.m4 ${DEPS} - ./tplg-build.sh - -clean-local: - rm -f *.conf - rm -f *.tplg - - -EXTRA_DIST = \ - test-capture.m4 \ - test-playback.m4 \ - test-tone-playback.m4 \ - test-all.m4 \ - tplg-build.sh diff --git a/tools/topology/Makefile.am b/tools/topology/Makefile.am deleted file mode 100644 index 3e293b188..000000000 --- a/tools/topology/Makefile.am +++ /dev/null @@ -1,98 +0,0 @@ - -# -# Dependencies -# - -SUBDIRS = m4 sof common platform - -DEPS = \ - platform/intel/*.m4 \ - platform/common/*.m4 \ - common/*.m4 \ - m4/*.m4 \ - sof/*.m4 - -# -# Machines -# - -MACHINES = \ - sof-cht-nocodec.tplg \ - sof-cht-max98090.tplg \ - sof-hda-intel-common.tplg \ - sof-apl-nocodec.tplg \ - sof-byt-nocodec.tplg \ - sof-bdw-rt286.tplg \ - sof-bdw-rt5640.tplg \ - sof-byt-rt5640.tplg \ - sof-byt-rt5645.tplg \ - sof-byt-rt5651.tplg \ - sof-byt-da7213.tplg \ - sof-cnl-rt274.tplg \ - sof-hsw-rt5640.tplg \ - sof-apl-tdf8532.tplg \ - sof-apl-pcm512x.tplg \ - sof-apl-pcm512x-nohdmi.tplg \ - sof-apl-rt298.tplg \ - sof-apl-wm8804.tplg \ - sof-apl-da7219.tplg \ - sof-glk-da7219.tplg \ - sof-glk-rt5682.tplg \ - sof-icl-nocodec.tplg \ - sof-apl-eq-pcm512x.tplg \ - sof-apl-eq-dmic.tplg \ - sof-apl-dmic-2ch.tplg \ - sof-apl-dmic-4ch.tplg \ - sof-icl-dmic-4ch.tplg \ - sof-apl-src-pcm512x.tplg \ - sof-cml-rt5682.tplg \ - sof-cml-src-rt5682.tplg \ - sof-cnl-nocodec.tplg - -# Uncomment the following line if you want to debug conf files -.PRECIOUS: %.conf - -%.conf : %.m4 ${DEPS} - m4 -I m4 -I common -I platform/common $< > $@ - -%.tplg : %.conf - alsatplg -v 1 -c $< -o $@ - -all: ${MACHINES} - -clean-local: - rm -f *.conf - rm -f *.tplg - -EXTRA_DIST = \ - sof-cht-nocodec.m4 \ - sof-cht-max98090.m4 \ - sof-apl-hdmi.m4 \ - sof-hda-intel-common.m4 \ - sof-apl-nocodec.m4 \ - sof-byt-nocodec.m4 \ - sof-bdw-rt286.m4 \ - sof-bdw-rt5640.m4 \ - sof-byt-rt5640.m4 \ - sof-byt-rt5645.m4 \ - sof-byt-rt5651.m4 \ - sof-byt-da7213.m4 \ - sof-cnl-rt274.m4 \ - sof-hsw-rt5640.m4 \ - sof-apl-tdf8532.m4 \ - sof-apl-pcm512x.m4 \ - sof-apl-pcm512x-nohdmi.m4 \ - sof-apl-rt298.m4 \ - sof-apl-wm8804.m4 \ - sof-apl-da7219.m4 \ - sof-glk-da7219.m4 \ - sof-glk-rt5682.m4 \ - sof-icl-nocodec.m4 \ - sof-apl-eq-pcm512x.m4 \ - sof-apl-eq-dmic.m4 \ - sof-apl-dmic-4ch.m4 \ - sof-apl-dmic-2ch.m4 \ - sof-apl-src-pcm512x.m4 \ - sof-cml-rt5682.m4 \ - sof-cml-src-rt5682.m4 \ - sof-cnl-nocodec.m4 diff --git a/tools/topology/common/Makefile.am b/tools/topology/common/Makefile.am deleted file mode 100644 index 7e207a797..000000000 --- a/tools/topology/common/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -EXTRA_DIST = \ - tlv.m4 \ - memory.m4 - diff --git a/tools/topology/m4/Makefile.am b/tools/topology/m4/Makefile.am deleted file mode 100644 index d7b867f31..000000000 --- a/tools/topology/m4/Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ -EXTRA_DIST = \ - buffer.m4 \ - dai.m4 \ - mixer.m4 \ - mixercontrol.m4 \ - pcm.m4 \ - pga.m4 \ - pipeline.m4 \ - src.m4 \ - tone.m4 \ - utils.m4 diff --git a/tools/topology/platform/Makefile.am b/tools/topology/platform/Makefile.am deleted file mode 100644 index 011ff9e93..000000000 --- a/tools/topology/platform/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = intel common diff --git a/tools/topology/platform/common/Makefile.am b/tools/topology/platform/common/Makefile.am deleted file mode 100644 index a8576d588..000000000 --- a/tools/topology/platform/common/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -EXTRA_DIST = \ - ssp.m4 diff --git a/tools/topology/platform/intel/Makefile.am b/tools/topology/platform/intel/Makefile.am deleted file mode 100644 index bc5697198..000000000 --- a/tools/topology/platform/intel/Makefile.am +++ /dev/null @@ -1,9 +0,0 @@ -EXTRA_DIST = \ - bdw.m4 \ - bxt.m4 \ - byt.m4 \ - cht.m4 \ - hsw.m4 \ - cnl.m4 \ - dmic.m4 - diff --git a/tools/topology/sof/Makefile.am b/tools/topology/sof/Makefile.am deleted file mode 100644 index fc92591f7..000000000 --- a/tools/topology/sof/Makefile.am +++ /dev/null @@ -1,14 +0,0 @@ -EXTRA_DIST = \ - pipe-dai-capture.m4 \ - pipe-dai-playback.m4 \ - pipe-low-latency-capture.m4 \ - pipe-low-latency-playback.m4 \ - pipe-passthrough-capture.m4 \ - pipe-passthrough-playback.m4 \ - pipe-pcm-media.m4 \ - pipe-src-capture.m4 \ - pipe-src-playback.m4 \ - pipe-tone.m4 \ - pipe-volume-capture.m4 \ - pipe-volume-playback.m4 \ - tokens.m4