Commit 9e6ff777bbf271b75aa0b1aa24e6f12d7b768375
1 parent
8c6a3a6b
Remove installation of rpiboot to /usr/bin
Showing
1 changed file
with
1 additions
and
8 deletions
Makefile
| 1 | rpiboot: main.c | 1 | rpiboot: main.c |
| 2 | $(CC) -g -o $@ $< -lusb-1.0 | 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 | uninstall: | 4 | uninstall: |
| 12 | rm -f /usr/bin/rpiboot | 5 | rm -f /usr/bin/rpiboot |
| 13 | rm -f /usr/share/rpiboot/usbbootcode.bin | 6 | rm -f /usr/share/rpiboot/usbbootcode.bin |
| @@ -18,4 +11,4 @@ uninstall: | @@ -18,4 +11,4 @@ uninstall: | ||
| 18 | clean: | 11 | clean: |
| 19 | rm rpiboot | 12 | rm rpiboot |
| 20 | 13 | ||
| 21 | -.PHONY: install uninstall clean | 14 | +.PHONY: uninstall clean |