Root/xbboot/host-app/Makefile.am

1AM_CFLAGS = -Wall -W -std=gnu99 -DDATADIR=\"$(pkgdatadir)\"
2
3bin_PROGRAMS = xbboot
4xbboot_SOURCES = host_main.c
5
6pkgdatadir = $(datadir)/xburst-tools/
7
8if COND_FIRMWARE
9pkgdata_DATA = ../target-stage1/stage1.bin
10endif
11
12EXTRA_DIST = $(pkgdatadir)
13
14../target-stage1/stage1.bin:
15    $(MAKE) CROSS_COMPILE=$(CROSS_COMPILE) -C ../target-stage1
16
17clean-local:
18    $(MAKE) CROSS_COMPILE=$(CROSS_COMPILE) -C ../target-stage1 clean
19

Archive Download this file



interactive