You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
SUBDIRS = jansson-2.6 |
|
|
|
ACLOCAL_AMFLAGS = -I m4 |
|
AM_CPPFLAGS = -I$(top_srcdir)/src/jansson-2.6/src |
|
|
|
native_objs := |
|
|
|
if HAVE_AVX2 |
|
native_objs += sha256_code_release/sha256_avx2_rorx2.A |
|
endif |
|
if HAVE_AVX1 |
|
native_objs += sha256_code_release/sha256_avx1.A |
|
endif |
|
if HAVE_SSE4 |
|
native_objs += sha256_code_release/sha256_sse4.A |
|
endif |
|
|
|
%.A: %.asm |
|
yasm -f x64 -f elf64 -X gnu -g dwarf2 -D LINUX -o $@ $< |
|
|
|
noinst_LIBRARIES = libckpool.a |
|
libckpool_a_SOURCES = libckpool.c libckpool.h sha2.c sha2.h |
|
libckpool_a_LIBADD = $(native_objs) |
|
|
|
bin_PROGRAMS = ckpool ckpmsg notifier |
|
ckpool_SOURCES = ckpool.c ckpool.h generator.c generator.h bitcoin.c bitcoin.h \ |
|
stratifier.c stratifier.h connector.c connector.h uthash.h \ |
|
utlist.h |
|
ckpool_LDADD = libckpool.a @JANSSON_LIBS@ @LIBS@ |
|
|
|
ckpmsg_SOURCES = ckpmsg.c |
|
ckpmsg_LDADD = libckpool.a @JANSSON_LIBS@ |
|
|
|
notifier_SOURCES = notifier.c |
|
notifier_LDADD = libckpool.a @JANSSON_LIBS@ |
|
|
|
if WANT_CKDB |
|
bin_PROGRAMS += ckdb |
|
ckdb_SOURCES = ckdb.c ckdb_cmd.c ckdb_data.c ckdb_dbio.c ckdb_btc.c \ |
|
ckdb_crypt.c ckdb.h klist.c ktree.c klist.h ktree.h |
|
ckdb_LDADD = libckpool.a @JANSSON_LIBS@ @LIBS@ |
|
endif
|
|
|