forked from pengutronix/genimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
115 lines (101 loc) · 2 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
if BUILD_SILENTLY
AM_MAKEFLAGS = --no-print-directory
endif
EXTRA_DIST = \
test.config \
flash.conf
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
AM_CPPFLAGS = \
-include $(top_builddir)/config.h
bin_PROGRAMS = genimage
genimage_SOURCES = \
genimage.c \
config.c \
util.c \
crc32.c \
image-cpio.c \
image-cramfs.c \
image-ext2.c \
image-file.c \
image-fit.c \
image-flash.c \
image-hd.c \
image-iso.c \
image-jffs2.c \
image-qemu.c \
image-rauc.c \
image-squashfs.c \
image-tar.c \
image-ubi.c \
image-ubifs.c \
image-vfat.c
genimage_CFLAGS = \
$(AM_CFLAGS) \
$(CONFUSE_CFLAGS)
genimage_LDADD = \
$(CONFUSE_LIBS)
noinst_HEADERS = \
genimage.h \
list.h
EXTRA_DIST += \
test/basic-images.test \
test/cpio.config \
test/cramfs.config \
test/ext2.config \
test/ext2test.dump \
test/ext2percent.config \
test/ext2test-percent.dump \
test/ext3.config \
test/ext3test.dump \
test/ext4.config \
test/ext4test.dump \
test/fit.its \
test/fit.config \
test/flash-types.config \
test/flash.config \
test/flash.md5 \
test/hdimage.config \
test/hdimage2.config \
test/hdimage.fdisk \
test/hdimage.fdisk-2 \
test/hdimage4.config \
test/hdimage4.fdisk \
test/iso.config \
test/jffs2.config \
test/jffs2.md5 \
test/mke2fs.conf \
test/mke2fs.config \
test/mke2fs.dump \
test/qemu.config \
test/qemu.qcow.gz \
test/sharness.sh \
test/squashfs.config \
test/tar.config \
test/ubi.config \
test/ubifs.config \
test/vfat.config
TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
$(top_srcdir)/build-aux/tap-driver.sh
TEST_LOG_COMPILER = fakeroot
TESTS = \
test/basic-images.test
# when "make clean" runs
CLEANFILES = \
test-results/basic-images.test*.counts
# when "make distclean" runs
DISTCLEAN = \
Makefile
# when "make maintainer-clean" runs
MAINTAINERCLEANFILES = \
configure \
autoscan.log \
config.h.in~ \
config.h.in \
configure.scan \
configure.ac~ \
aclocal.m4 \
Makefile.in \
build-aux/depcomp \
build-aux/install-sh \
build-aux/missing \
$(DIST_ARCHIVES)