File: Makefile

package info (click to toggle)
alsa-topology-conf 1.2.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 428 kB
  • sloc: makefile: 13
file content (16 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Compile and install the firmware files to /lib/firmware tree
# Requires the alsatplg tool (alsa-utils)
#

FWPATH ?= /lib/firmware

targets = $(FWPATH)/skl_hda_dsp_generic-tplg.bin

all: firmware

$(FWPATH)/skl_hda_dsp_generic-tplg.bin: topology/hda-dsp/skl_hda_dsp_generic-tplg.conf
	alsatplg -c $< -o $@

.DUMMY: firmware
firmware: $(targets)