diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..50a4c29 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# This file implements the GNOME Build API: +# http://people.gnome.org/~walters/docs/build-api.txt + +FIRMWAREDIR = /lib/firmware + +all: + +check: + @./check_whence.py + +install: + install -d $(DESTDIR)$(FIRMWAREDIR) + ./copy-firmware.sh $(DESTDIR)$(FIRMWAREDIR) + +install-xz: + install -d $(DESTDIR)$(FIRMWAREDIR) + ./copy-firmware.sh --xz $(DESTDIR)$(FIRMWAREDIR) + +install-zst: + install -d $(DESTDIR)$(FIRMWAREDIR) + ./copy-firmware.sh --zstd $(DESTDIR)$(FIRMWAREDIR) |