mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
synced 2025-01-05 06:19:59 +00:00
a46023d61d
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 -- {} \;
|