forked from lucasjones/cpuminer-multi
-
Notifications
You must be signed in to change notification settings - Fork 697
/
Makefile.am
172 lines (154 loc) · 3.58 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
if WANT_JANSSON
JANSSON_INCLUDES= -I$(top_srcdir)/compat/jansson
else
JANSSON_INCLUDES=
endif
EXTRA_DIST = example-cfg.json nomacro.pl
SUBDIRS = compat
ALL_INCLUDES = @PTHREAD_FLAGS@ -fno-strict-aliasing $(JANSSON_INCLUDES) -I.
bin_PROGRAMS = cpuminer
dist_man_MANS = cpuminer.1
cpuminer_SOURCES = \
cpu-miner.c util.c \
api.c sysinfos.c \
uint256.cpp \
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_shavite.c \
sha3/sph_blake.c \
sha3/mod_blakecoin.c \
sha3/sph_luffa.c \
sha3/sph_cubehash.c \
sha3/sph_simd.c \
sha3/sph_echo.c \
sha3/sph_fugue.c \
sha3/sph_hamsi.c \
sha3/sph_haval.c \
sha3/sph_panama.c \
sha3/sph_radiogatun.c \
sha3/sph_ripemd.c \
sha3/sph_sha2.c \
sha3/sph_sha2big.c \
sha3/sph_shabal.c \
sha3/sph_whirlpool.c \
sha3/sph_tiger.c \
sha3/gost_streebog.c \
crypto/blake2s.c \
crypto/blake2b.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 \
lyra2/Lyra2.c lyra2/Sponge.c \
yescrypt/yescrypt-common.c yescrypt/yescrypt-best.c \
yescrypt/sha256_Y.c \
algo/allium.c \
algo/axiom.c \
algo/bastion.c \
algo/blake.c \
algo/blakecoin.c \
algo/blake2.c \
algo/bmw256.c \
algo/c11.c \
algo/cryptonight.c \
algo/cryptolight.c \
algo/decred.c \
algo/drop.c \
algo/fresh.c \
algo/geek.c \
algo/groestl.c \
algo/heavy.c \
algo/ink.c \
algo/jha.c \
algo/lbry.c \
algo/luffa.c \
algo/lyra2re.c \
algo/lyra2rev2.c \
algo/lyra2v3.c \
algo/myr-groestl.c \
algo/keccak.c \
algo/pentablake.c \
algo/phi1612.c \
algo/phi2.c \
algo/quark.c \
algo/neoscrypt.c \
algo/nist5.c \
algo/pluck.c \
algo/qubit.c \
algo/rainforest.c \
algo/scrypt.c \
algo/scrypt-jane.c \
algo/sha2.c \
algo/sia.c \
algo/sibcoin.c \
algo/skein.c \
algo/skein2.c \
algo/sonoa.c \
algo/s3.c \
algo/bitcore.c \
algo/timetravel.c \
algo/tribus.c \
algo/veltor.c \
algo/x11evo.c \
algo/x11.c \
algo/x12.c \
algo/x13.c \
algo/x14.c \
algo/x15.c \
algo/x16r.c \
algo/x16rv2.c \
algo/x16s.c \
algo/x20r.c \
algo/x17.c \
algo/xevan.c \
algo/yescrypt.c \
algo/zr5.c
disable_flags =
if USE_ASM
cpuminer_SOURCES += asm/neoscrypt_asm.S
if ARCH_x86
cpuminer_SOURCES += asm/sha2-x86.S asm/scrypt-x86.S asm/aesb-x86.S
endif
if ARCH_x86_64
cpuminer_SOURCES += asm/sha2-x64.S asm/scrypt-x64.S asm/aesb-x64.S
endif
if ARCH_ARM
cpuminer_SOURCES += asm/sha2-arm.S asm/scrypt-arm.S
endif
else
disable_flags += -DNOASM
endif
if HAVE_WINDOWS
cpuminer_SOURCES += compat/winansi.c
endif
cpuminer_LDFLAGS = @LDFLAGS@
cpuminer_LDADD = @LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ @WS2_LIBS@
cpuminer_CPPFLAGS = @LIBCURL_CPPFLAGS@ $(ALL_INCLUDES)
cpuminer_CFLAGS = -Wno-pointer-sign -Wno-pointer-to-int-cast $(disable_flags)
if HAVE_WINDOWS
cpuminer_CFLAGS += -Wl,--stack,10485760
cpuminer_LDADD += -lcrypt32 -lgdi32 -lgcc -lgcc_eh
endif
if ARCH_ARM
cpuminer_CFLAGS += -D__arm__
endif
if HAVE_WINDOWS
# use to profile an object
# gprof_cflags = -pg -g3
# cpuminer_LDFLAGS += -pg
# cpuminer_CFLAGS += -fno-inline-functions -static
# copy/paste from generated Makefile
common_ccflags = $(DEFS) $(ALL_INCLUDES) $(cpuminer_CPPFLAGS) $(CPPFLAGS) $(cpuminer_CFLAGS) $(CFLAGS)
# special CFLAGS (if you find a simpler way to do that tell me ;)
cpuminer-neoscrypt.o: neoscrypt.c
@echo "CUSTOM ${@}: ${filter %.o,${^}} ${filter %.c,${^}}"
$(CC) $(common_ccflags) -g -O3 $(gprof_cflags) -MT $@ -MD -MP -c -o $@ $<
endif