diff options
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/ |