-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile.am
95 lines (71 loc) · 2.37 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
ACLOCAL_AMFLAGS = -I m4
if WANT_JANSSON
JANSSON_INCLUDES= -I$(top_srcdir)/compat/jansson
else
JANSSON_INCLUDES=
endif
EXTRA_DIST = example.conf m4/gnulib-cache.m4 linux-usb-yacminer \
ADL_SDK/readme.txt api-example.php miner.php \
API.class API.java api-example.c windows-build.txt \
bitstreams/* API-README FPGA-README SCRYPT-README \
bitforce-firmware-flash.c hexdump.c ASIC-README \
01-yacminer.rules GPU-README
SUBDIRS = lib compat ccan
INCLUDES = $(PTHREAD_FLAGS) -fno-strict-aliasing $(JANSSON_INCLUDES)
bin_PROGRAMS = yacminer
bin_SCRIPTS = $(top_srcdir)/*.cl
yacminer_LDFLAGS = $(PTHREAD_FLAGS)
yacminer_LDADD = $(DLOPEN_FLAGS) @LIBCURL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ \
@OPENCL_LIBS@ @NCURSES_LIBS@ @PDCURSES_LIBS@ @WS2_LIBS@ \
@LIBUSB_LIBS@ @MM_LIBS@ \
@MATH_LIBS@ lib/libgnu.a ccan/libccan.a
if HAVE_WINDOWS
yacminer_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib @OPENCL_FLAGS@ @LIBUSB_CFLAGS@
else
yacminer_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib @OPENCL_FLAGS@ @LIBUSB_CFLAGS@ @LIBCURL_CFLAGS@
endif
yacminer_CPPFLAGS += $(ADL_CPPFLAGS)
# common sources
yacminer_SOURCES := yacminer.c
yacminer_SOURCES += elist.h miner.h compat.h bench_block.h \
util.c util.h uthash.h logging.h \
sha2.c sha2.h api.c usbutils.h
yacminer_SOURCES += logging.c
# GPU sources, TODO: make them selectable
# the GPU portion extracted from original main.c
yacminer_SOURCES += driver-opencl.h driver-opencl.c
# the original GPU related sources, unchanged
yacminer_SOURCES += ocl.c ocl.h findnonce.c findnonce.h
yacminer_SOURCES += adl.c adl.h adl_functions.h
yacminer_SOURCES += *.cl
if HAS_SCRYPT
yacminer_SOURCES += scrypt.c scrypt.h scrypt-jane.c scrypt-jane.h
endif
if NEED_FPGAUTILS
yacminer_SOURCES += fpgautils.c fpgautils.h
endif
if NEED_USBUTILS_C
yacminer_SOURCES += usbutils.c
endif
if HAS_BFLSC
yacminer_SOURCES += driver-bflsc.c
endif
if HAS_BITFORCE
yacminer_SOURCES += driver-bitforce.c
endif
if HAS_ICARUS
yacminer_SOURCES += driver-icarus.c
endif
if HAS_AVALON
yacminer_SOURCES += driver-avalon.c driver-avalon.h
endif
if HAS_MODMINER
yacminer_SOURCES += driver-modminer.c
bitstreamsdir = $(bindir)/bitstreams
dist_bitstreams_DATA = $(top_srcdir)/bitstreams/*
endif
if HAS_ZTEX
yacminer_SOURCES += driver-ztex.c libztex.c libztex.h
bitstreamsdir = $(bindir)/bitstreams
dist_bitstreams_DATA = $(top_srcdir)/bitstreams/*
endif