mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2025-01-11 08:10:14 +02:00
18 lines
503 B
Makefile
18 lines
503 B
Makefile
AM_CFLAGS = -pedantic -Wall -W -O1 -g3 -std=gnu99 -lusb -lconfuse
|
|
|
|
inflash_version.h:
|
|
echo -e '#ifndef INFLASH_VERSION' \
|
|
'\n#define INFLASH_VERSION "'`svnversion`'"' \
|
|
'\n#endif' > inflash_version.h
|
|
BUILT_SOURCES = inflash_version.h
|
|
|
|
bin_PROGRAMS = inflash
|
|
inflash_SOURCES = cmd.c command_line.c ingenic_cfg.c \
|
|
ingenic_usb.c main.c
|
|
prefix = /usr
|
|
|
|
datadir = /usr/share/inflash
|
|
data_DATA = ../xburst_stage1/xburst_stage1.bin ../xburst_stage2/usb_boot.bin \
|
|
usb_boot.cfg
|
|
EXTRA_DIST = $(datadir)
|