mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-27 09:12:32 +00:00
16 lines
300 B
Makefile
16 lines
300 B
Makefile
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/dde_linux)
|
|
|
|
content: ucode_files LICENSE.iwlwifi
|
|
|
|
|
|
.PHONY: ucode_files
|
|
ucode_files:
|
|
cp $(PORT_DIR)/firmware/*.ucode .
|
|
|
|
LICENSE.iwlwifi:
|
|
for i in $(PORT_DIR)/firmware/LICENSE.*; do \
|
|
echo "$${i##*/}:" >> $@; \
|
|
cat $$i >> $@; \
|
|
echo >> $@; \
|
|
done
|