mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:09:40 +02:00
71d2db02e5
update package version define in usbboot, xbboot update .gitignore resolve the confilict file on "config.h" Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
19 lines
426 B
Makefile
19 lines
426 B
Makefile
AM_CFLAGS = -pedantic -Wall -W -std=gnu99 -DDATADIR=\"$(pkgdatadir)\"
|
|
|
|
bin_PROGRAMS = xbboot
|
|
xbboot_SOURCES = host_main.c
|
|
|
|
pkgdatadir = $(datadir)/xburst-tools/
|
|
|
|
if COND_FIRMWARE
|
|
pkgdata_DATA = ../target-stage1/stage1.bin
|
|
endif
|
|
|
|
EXTRA_DIST = $(pkgdatadir)
|
|
|
|
../target-stage1/stage1.bin:
|
|
$(MAKE) CROSS_COMPILE=$(CROSS_COMPILE) -C ../target-stage1
|
|
|
|
clean-local:
|
|
$(MAKE) CROSS_COMPILE=$(CROSS_COMPILE) -C ../target-stage1 clean
|