Commit 9e6ff777bbf271b75aa0b1aa24e6f12d7b768375

Authored by Gordon Hollingworth
1 parent 8c6a3a6b

Remove installation of rpiboot to /usr/bin

Showing 1 changed file with 1 additions and 8 deletions
Makefile
1 1 rpiboot: main.c
2 2 $(CC) -g -o $@ $< -lusb-1.0
3 3  
4   -install: rpiboot
5   - cp rpiboot /usr/bin
6   - mkdir -p /usr/share/rpiboot
7   - cp usbbootcode.bin /usr/share/rpiboot
8   - cp msd.elf /usr/share/rpiboot
9   - cp buildroot.elf /usr/share/rpiboot
10   -
11 4 uninstall:
12 5 rm -f /usr/bin/rpiboot
13 6 rm -f /usr/share/rpiboot/usbbootcode.bin
... ... @@ -18,4 +11,4 @@ uninstall:
18 11 clean:
19 12 rm rpiboot
20 13  
21   -.PHONY: install uninstall clean
  14 +.PHONY: uninstall clean
... ...