-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.am
More file actions
27 lines (24 loc) · 840 Bytes
/
Copy pathMakefile.am
File metadata and controls
27 lines (24 loc) · 840 Bytes
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
EXTRA_DIST = README.md LICENSE.txt
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
libevent_LIBS += -lrt
bin_PROGRAMS = bitpeer
bitpeer_SOURCES = \
src/bitpeer.c \
src/addrpool.h src/addrpool.c \
src/blockstorage.h src/blockstorage.c src/blockstorage_rechain.c \
src/blockverify.h src/blockverify.c \
src/btcblock.h \
src/client.h src/client.c \
src/commands.h src/commands.c \
src/connection.h src/connection.c \
src/log.h src/log.c \
src/program.h src/program.c \
src/server.h src/server.c \
src/txpool.h src/txpool.c \
src/txverify.h src/txverify.c \
src/util.h src/util.c \
src/invvector.h src/invvector.c
bitpeer_CFLAGS = -Wall -Werror -pedantic -Wno-strict-aliasing -Wmissing-prototypes
bitpeer_CFLAGS += $(libevent_CFLAGS) $(libcrypto_CFLAGS)
bitpeer_LDADD = $(libevent_LIBS) $(libcrypto_LIBS)