diff options
| author | Kevin Wallace <kevin@pentabarf.net> | 2026-03-02 15:04:40 -0800 |
|---|---|---|
| committer | Kevin Wallace <kevin@pentabarf.net> | 2026-03-02 15:04:40 -0800 |
| commit | 502a6d983f981aff18b261a61feded2db6006ec6 (patch) | |
| tree | b2f7b65c8c5a0319780f62a891d517148a6623ff /Makefile | |
| parent | exec -> systemd-run; more parsing (diff) | |
ipp -> {cvend,pic32}-ipp
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,7 +6,7 @@ USB_ROOT=/Volumes/MP_SD GOSOURCES:=$(shell find . -name *.go) -all: bin/ipp +all: bin/cvend-ipp bin/pic32-ipp clean: rm -r bin @@ -15,7 +15,8 @@ bin/%: ${GOSOURCES} mkdir -p bin go build -o $@ ./cmd/$* -usb: autorun.sh bin/ipp +usb: autorun.sh bin/cvend-ipp bin/pic32-ipp install autorun.sh ${USB_ROOT}/ install -d ${USB_ROOT}/bin/ - install bin/ipp ${USB_ROOT}/bin/ + install bin/cvend-ipp ${USB_ROOT}/bin/ + install bin/pic32-ipp ${USB_ROOT}/bin/ |