-
Notifications
You must be signed in to change notification settings - Fork 36
/
Makefile.am
107 lines (79 loc) · 2.56 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
ACLOCAL_AMFLAGS = -I m4
JANSSON_INCLUDES= -I$(top_builddir)/compat/jansson-2.5/src -I$(top_srcdir)/compat/jansson-2.5/src
if WANT_USBUTILS
USBUTILS_INCLUDES = -I$(top_builddir)/compat/libusb-1.0/libusb -I$(top_srcdir)/compat/libusb-1.0/libusb
else
USBUTILS_INCLUDES =
endif
EXTRA_DIST = example.conf m4/gnulib-cache.m4 linux-usb-cgminer \
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-cgminer.rules GPU-README
SUBDIRS = lib compat ccan
INCLUDES = $(PTHREAD_FLAGS) -fno-strict-aliasing $(JANSSON_INCLUDES) $(USBUTILS_INCLUDES)
bin_PROGRAMS = vertminer
vertminer_LDFLAGS = $(PTHREAD_FLAGS)
vertminer_LDADD = $(DLOPEN_FLAGS) @LIBCURL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ \
@OPENCL_LIBS@ @NCURSES_LIBS@ @PDCURSES_LIBS@ @WS2_LIBS@ \
@LIBUSB_LIBS@ @MM_LIBS@ @RT_LIBS@ \
@MATH_LIBS@ lib/libgnu.a ccan/libccan.a
if HAVE_WINDOWS
vertminer_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib @OPENCL_FLAGS@
else
vertminer_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib @OPENCL_FLAGS@ @LIBCURL_CFLAGS@
endif
vertminer_CPPFLAGS += $(ADL_CPPFLAGS)
# common sources
vertminer_SOURCES := vertminer.c
vertminer_SOURCES += elist.h miner.h compat.h bench_block.h \
util.c util.h uthash.h logging.h \
sha2.c sha2.h api.c
vertminer_SOURCES += logging.c
if HAS_OPENCL
bin_SCRIPTS = $(top_srcdir)/*.cl
vertminer_SOURCES += driver-opencl.h driver-opencl.c
vertminer_SOURCES += ocl.c ocl.h findnonce.c findnonce.h
vertminer_SOURCES += adl.c adl.h adl_functions.h
vertminer_SOURCES += *.cl
if HAS_SCRYPT
vertminer_SOURCES += scrypt.c scrypt.h
endif
endif
if NEED_FPGAUTILS
vertminer_SOURCES += fpgautils.c fpgautils.h
endif
if WANT_USBUTILS
vertminer_SOURCES += usbutils.c usbutils.h
endif
# Device drivers
if HAS_AVALON
vertminer_SOURCES += driver-avalon.c driver-avalon.h
endif
if HAS_KNC
vertminer_SOURCES += driver-knc-spi-fpga.c
endif
if HAS_BFLSC
vertminer_SOURCES += driver-bflsc.c driver-bflsc.h
endif
if HAS_BITFORCE
vertminer_SOURCES += driver-bitforce.c
endif
if HAS_HASHFAST
vertminer_SOURCES += driver-hashfast.c driver-hashfast.h hf_protocol.h
endif
if HAS_BITFURY
vertminer_SOURCES += driver-bitfury.c driver-bitfury.h
endif
if HAS_ICARUS
vertminer_SOURCES += driver-icarus.c
endif
if HAS_KLONDIKE
vertminer_SOURCES += driver-klondike.c
endif
if HAS_MODMINER
vertminer_SOURCES += driver-modminer.c
bitstreamsdir = $(bindir)/bitstreams
dist_bitstreams_DATA = $(top_srcdir)/bitstreams/*
endif