mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 14:14:38 +02:00
20 lines
452 B
Makefile
20 lines
452 B
Makefile
AM_CFLAGS = -pedantic -Wall -W -O1 -g3 -std=gnu99 -lusb -lconfuse
|
|
|
|
xbboot_version.h:
|
|
echo -e '#ifndef XBBOOT_VERSION' \
|
|
'\n#define XBBOOT_VERSION "20090815-1"' \
|
|
'\n#endif' > xbboot_version.h
|
|
BUILT_SOURCES = xbboot_version.h
|
|
|
|
bin_PROGRAMS = xbboot
|
|
xbboot_SOURCES = host_main.c
|
|
|
|
prefix = /usr
|
|
datadir = /usr/share/xburst-tools
|
|
data_DATA = ../target-stage1/stage1.bin
|
|
|
|
EXTRA_DIST = $(datadir)
|
|
|
|
../target-stage1/stage.bin:
|
|
$(MAKE) -C ../target-stage1
|