-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.am
99 lines (90 loc) · 2.21 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
if WANT_JANSSON
JANSSON_INCLUDES= -I$(top_srcdir)/compat/jansson
else
JANSSON_INCLUDES=
endif
EXTRA_DIST = example-cfg.json nomacro.pl
SUBDIRS = compat
INCLUDES = $(PTHREAD_FLAGS) -fno-strict-aliasing $(JANSSON_INCLUDES)
bin_PROGRAMS = minerd
dist_man_MANS = minerd.1
minerd_SOURCES = elist.h \
miner.h \
compat.h \
algorithm.h \
cpu-miner.c \
util.c \
algorithm.c \
algorithm/sha2.c \
algorithm/scrypt.c \
algorithm/keccak.c \
algorithm/heavy.c \
algorithm/quark.c \
algorithm/skein.c \
algorithm/ink.c \
algorithm/groestl.c \
algorithm/myriadcoin-groestl.c \
algorithm/blake.c \
algorithm/cryptonight.c \
algorithm/fresh.c \
algorithm/lbry.c \
algorithm/x11.c \
algorithm/x13.c \
algorithm/x14.c \
algorithm/x15.c \
algorithm/pentablake.c \
algorithm/axiom.c \
sha3/sph_keccak.c \
sha3/sph_hefty1.c \
sha3/sph_groestl.c \
sha3/sph_skein.c \
sha3/sph_bmw.c \
sha3/sph_jh.c \
sha3/sph_sha0.c \
sha3/sph_sha1.c \
sha3/sph_sha2.c \
sha3/sph_sha2big.c \
sha3/sph_shavite.c \
sha3/sph_blake.c \
sha3/sph_luffa.c \
sha3/sph_cubehash.c \
sha3/sph_simd.c \
sha3/sph_echo.c \
sha3/sph_hamsi.c \
sha3/sph_haval.c \
sha3/sph_md2.c \
sha3/sph_md4.c \
sha3/sph_md5.c \
sha3/sph_panama.c \
sha3/sph_radiogatun.c \
sha3/sph_ripemd.c \
sha3/sph_tiger.c \
sha3/sph_fugue.c \
sha3/sph_shabal.c \
sha3/sph_whirlpool.c \
crypto/oaes_lib.c \
crypto/c_keccak.c \
crypto/c_groestl.c \
crypto/c_blake256.c \
crypto/c_jh.c \
crypto/c_skein.c \
crypto/hash.c \
crypto/aesb.c
if USE_ASM
if ARCH_x86
minerd_SOURCES += algorithm/sha2-x86.S algorithm/scrypt-x86.S algorithm/aesb-x86.S crypto/aesb-x86-impl.c
endif
if ARCH_x86_64
minerd_SOURCES += algorithm/sha2-x64.S algorithm/scrypt-x64.S algorithm/aesb-x64.S
endif
if ARCH_ARM
minerd_SOURCES += algorithm/sha2-arm.S algorithm/scrypt-arm.S
endif
endif
minerd_LDFLAGS = $(PTHREAD_FLAGS)
minerd_LDADD = @LIBCURL_LIBS@ @OPENSSL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ @WS2_LIBS@
minerd_CPPFLAGS = @LIBCURL_CPPFLAGS@
minerd_CFLAGS =
if HAVE_WINDOWS
minerd_CFLAGS += -Wl,--stack,10485760
endif