mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 08:29:41 +02:00
17 lines
508 B
Makefile
17 lines
508 B
Makefile
|
|
all:
|
|
make -C usbboot/xburst_stage1
|
|
make -C usbboot/xburst_stage2
|
|
make -C xbboot/target-stage1
|
|
|
|
clean:
|
|
make -C usbboot/xburst_stage1 clean
|
|
make -C usbboot/xburst_stage2 clean
|
|
make -C xbboot/target-stage1 clean
|
|
|
|
install: all
|
|
install -d ${datadir}/xburst-tools/
|
|
install -m 644 usbboot/xburst_stage1/xburst_stage1.bin ${datadir}/xburst-tools
|
|
install -m 644 usbboot/xburst_stage1/xburst_stage2.bin ${datadir}/xburst-tools
|
|
install -m 644 xbboot/target-stage1/stage1.bin ${datadir}/xburst-tools
|