carl9170: Update based on commit cd76b7b483731dc5cb467c28cc70478179fbffd5 dated Feb...
[linux-libre-firmware.git] / cis / Makefile
1 # The pack_cis tool from cis-tools
2 # <http://git.kernel.org/?p=utils/cis-tools/cis-tools.git>.
3 PACK_CIS = ../cis-tools/pack_cis
4
5 CIS_SRC := $(wildcard src/*.cis)
6 CIS_BIN := $(notdir $(CIS_SRC))
7
8 all: $(CIS_BIN)
9
10 %.cis: src/%.cis
11         $(PACK_CIS) -o $@ $<
12
13 clean:
14         rm -f $(CIS_BIN)