X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=examples%2Fboard_usb%2FMakefile;h=9aa7f47d3d9a92d401fba1b2bec246e43fc69eb1;hb=2215adbdec3b89b5c9bd8128537541a41fe741ee;hp=410b9d48cb705969f9334b0709f20ca1cc9c125d;hpb=bb4699ba0132c8d1c0d22916484be952654bcf71;p=simavr diff --git a/examples/board_usb/Makefile b/examples/board_usb/Makefile index 410b9d4..9aa7f47 100644 --- a/examples/board_usb/Makefile +++ b/examples/board_usb/Makefile @@ -21,8 +21,6 @@ firm_src = at90usb162_cdc_loopback.c firmware = ${firm_src:.c=.hex} simavr = ../../ -SHELL = /bin/bash - IPATH = . IPATH += ../parts IPATH += ../vhci/include @@ -47,14 +45,14 @@ ${board} : ${OBJ}/${target}.o ../vhci/lib/libusb_vhci.a: @echo -n "BUILDIN $@ " - @{ make -j -C ../vhci >/tmp/vhci.build.log 2>&1 || \ + @{ $(MAKE) -j -C ../vhci >/tmp/vhci.build.log 2>&1 || \ { echo "ERROR check /tmp/vhci.build.log"; exit 1; }; } && \ echo " Done" vhci : ../vhci/lib/libusb_vhci.a clean-vhci: - make -C ../vhci clean + $(MAKE) -C ../vhci clean ${target}: vhci ${board} @echo $@ done