14 lines
251 B
Makefile
14 lines
251 B
Makefile
# 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:
|
|||
mkdir -p $(DESTDIR)$(FIRMWAREDIR)
|
|||
./copy-firmware.sh $(DESTDIR)$(FIRMWAREDIR)
|