1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2025-04-21 12:27:27 +03:00
Files
xburst-tools/Makefile.firmware
2012-02-20 16:35:45 +08:00

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