1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 14:14:38 +02:00
xburst-tools/xbboot/host-app/Makefile.am

19 lines
426 B
Makefile
Raw Normal View History

AM_CFLAGS = -pedantic -Wall -W -std=gnu99 -DDATADIR=\"$(pkgdatadir)\"
2009-08-21 09:04:09 +03:00
bin_PROGRAMS = xbboot
xbboot_SOURCES = host_main.c
pkgdatadir = $(datadir)/xburst-tools/
2009-08-21 09:04:09 +03:00
if COND_FIRMWARE
pkgdata_DATA = ../target-stage1/stage1.bin
endif
2009-08-21 09:04:09 +03:00
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