mirror of
https://git.proxmox.com/git/mirror_linux-firmware
synced 2025-08-03 21:38:58 +00:00

It only contains source/README, which we remove in the installed copy anyway. Signed-off-by: Kyle McMartin <kyle@kernel.org>
14 lines
370 B
Makefile
14 lines
370 B
Makefile
# This file implements the GNOME Build API:
|
|
# http://people.gnome.org/~walters/docs/build-api.txt
|
|
|
|
FIRMWAREDIR = /lib/firmware
|
|
|
|
all:
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)$(FIRMWAREDIR)
|
|
cp -r * $(DESTDIR)$(FIRMWAREDIR)
|
|
rm -rf $(DESTDIR)$(FIRMWAREDIR)/usbdux
|
|
find $(DESTDIR)$(FIRMWAREDIR) \( -name 'WHENCE' -or -name 'LICENSE.*' -or \
|
|
-name 'LICENCE.*' \) -exec rm -- {} \;
|