Root/
| 1 | AM_CFLAGS = -pedantic -Wall -W -O1 -g3 -std=gnu99 -lusb -lconfuse |
| 2 | |
| 3 | xbboot_version.h: |
| 4 | echo -e '#ifndef XBBOOT_VERSION' \ |
| 5 | '\n#define XBBOOT_VERSION "20090815-1"' \ |
| 6 | '\n#endif' > xbboot_version.h |
| 7 | BUILT_SOURCES = xbboot_version.h |
| 8 | |
| 9 | bin_PROGRAMS = xbboot |
| 10 | xbboot_SOURCES = host_main.c |
| 11 | |
| 12 | prefix = /usr |
| 13 | datadir = /usr/share/xburst-tools |
| 14 | data_DATA = ../target-stage1/stage1.bin |
| 15 | |
| 16 | EXTRA_DIST = $(datadir) |
| 17 | |
| 18 | ../target-stage1/stage.bin: |
| 19 | $(MAKE) -C ../target-stage1 |
| 20 |
