Makefile 397 Bytes
Newer Older
1
2
3
4
5
6
7
# This file implements the GNOME Build API:
# http://people.gnome.org/~walters/docs/build-api.txt

FIRMWAREDIR = /lib/firmware

all:

8
9
10
check:
	./check_whence.py

11
12
13
install:
	mkdir -p $(DESTDIR)$(FIRMWAREDIR)
	cp -r * $(DESTDIR)$(FIRMWAREDIR)
14
	rm -rf $(DESTDIR)$(FIRMWAREDIR)/usbdux
15
16
	find $(DESTDIR)$(FIRMWAREDIR) \( -name 'WHENCE' -or -name 'LICENSE.*' -or \
		-name 'LICENCE.*' \) -exec rm -- {} \;