mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-18 04:20:38 +02:00
e9d65fbfd3
- atusb-flash: flash boot loader and application - Makefile (PHONY, flash): invoke atusb-flash - Common (REF_EXEC): execute a command on the host with the reference device - Common (_doit, expect, expect_re): moved command execution to separate function, for better sharing - Common (doit): new function for executing a command without grepping through its output - Common (begin): make profile argument optional
24 lines
341 B
Makefile
24 lines
341 B
Makefile
#
|
|
# This Makefile just contains a few convenience commands, for development
|
|
#
|
|
|
|
|
|
.PHONY: all ben usb flash
|
|
|
|
all: ben
|
|
|
|
ben: ben.profile
|
|
./atben usb net:ben
|
|
|
|
usb: usb.profile
|
|
./atusb net:ben usb
|
|
|
|
flash:
|
|
./atusb-flash net:ben usb
|
|
|
|
ben.profile:
|
|
cp ../tools/atrf-path/profile.example $@
|
|
|
|
usb.profile:
|
|
cp ../tools/atrf-path/profile.example $@
|