-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile.am
63 lines (47 loc) · 1.65 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
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -Bsymbolic -Wundef -Wall -Wno-switch -Wno-parentheses -Wpointer-arith -Wredundant-decls -Werror=format-security -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wdisabled-optimization -Wno-pointer-sign -Wdeclaration-after-statement -Werror-implicit-function-declaration -std=c99 -D_POSIX_C_SOURCE=200112 -D_ISOC99_SOURCE -fno-asynchronous-unwind-tables
image.lo: AM_CFLAGS += -Wno-unused-result
SUBDIRS = . test
lib_LTLIBRARIES = libiec16022.la
libiec16022include_HEADERS = \
iec16022ecc200.h \
image.h \
reedsol.h
libiec16022includedir = $(includedir)/iec16022
libiec16022_la_LDFLAGS = -version-number $(LT_VERSION_C):$(LT_VERSION_R):$(LT_VERSION_A)
bin_PROGRAMS = iec16022
check_PROGRAMS = iec16022
EXTRA_PROGRAMS = fuzzer
man_MANS = iec16022.1
iec16022_SOURCES = \
iec16022.c
iec16022_CPPFLAGS = $(POPT_CFLAGS)
iec16022_LDADD = \
libiec16022.la \
$(POPT_LIBS)
fuzzer_SOURCES = fuzzer.c
fuzzer_LDADD = $(iec16022_LDADD)
libiec16022_la_SOURCES = \
iec16022ecc200.c \
iec16022ecc200.h \
image.c \
image.h \
reedsol.c \
reedsol.h
EXTRA_DIST = \
autogen.sh \
autogen-clean.sh \
iec16022.1.in \
libiec16022.pc.in \
test/testsuite.sh \
test/testsuite-example.bin \
test/testsuite-example.eps \
test/testsuite-example.hex \
test/testsuite-example.png \
test/testsuite-example.text \
test/testsuite-example.utf8 \
$(man_MANS)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA= libiec16022.pc
iec16022.signed.exe: .libs/iec16022.exe
osslsigncode sign -ts http://sha256timestamp.ws.symantec.com/sha256/timestamp -certs $(SIGNKEY).crt -key $(SIGNKEY).key -h sha256 $(SIGNOPTS) -in $^ -out $@