Skip to content

Commit 313e7f5

Browse files
author
MarcoFalke
committed
Squashed 'src/univalue/' changes from 87d9045..5839ac3
5839ac3 Merge pull request dashpay#13 from theuni/move-lib 3f248e0 build: move libunivalue.la to the root dir a68aed5 Merge pull request dashpay#12 from jmcorgan/add-ignores 81cafe3 Update and consolidate git ignores git-subtree-dir: src/univalue git-subtree-split: 5839ac3
1 parent 2f9f082 commit 313e7f5

File tree

6 files changed

+15
-19
lines changed

6 files changed

+15
-19
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,13 @@ test-driver
1919
libtool
2020
ltmain.sh
2121

22+
*.a
23+
*.la
24+
*.lo
25+
*.logs
2226
*.o
27+
*.pc
28+
*.trs
29+
30+
.dirstamp
31+
.libs

Makefile.am

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ ACLOCAL_AMFLAGS = -I build-aux/m4
55
include_HEADERS = include/univalue.h
66
noinst_HEADERS = lib/univalue_escapes.h
77

8-
lib_LTLIBRARIES = lib/libunivalue.la
8+
lib_LTLIBRARIES = libunivalue.la
99

1010
pkgconfigdir = $(libdir)/pkgconfig
1111
pkgconfig_DATA = pc/libunivalue.pc
1212

13-
lib_libunivalue_la_SOURCES = \
13+
libunivalue_la_SOURCES = \
1414
lib/univalue.cpp \
1515
lib/univalue_read.cpp \
1616
lib/univalue_write.cpp
1717

18-
lib_libunivalue_la_LDFLAGS = \
18+
libunivalue_la_LDFLAGS = \
1919
-version-info $(LIBUNIVALUE_CURRENT):$(LIBUNIVALUE_REVISION):$(LIBUNIVALUE_AGE) \
2020
-no-undefined
21-
lib_libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include
21+
libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include
2222

2323
TESTS = test/unitester
2424

@@ -38,7 +38,7 @@ noinst_PROGRAMS = $(TESTS)
3838
TEST_DATA_DIR=test
3939

4040
test_unitester_SOURCES = test/unitester.cpp
41-
test_unitester_LDADD = lib/libunivalue.la
41+
test_unitester_LDADD = libunivalue.la
4242
test_unitester_CXXFLAGS = -I$(top_srcdir)/include -DJSON_TEST_SRC=\"$(srcdir)/$(TEST_DATA_DIR)\"
4343
test_unitester_LDFLAGS = -static $(LIBTOOL_APP_LDFLAGS)
4444

build-aux/m4/.empty

Whitespace-only changes.

build-aux/m4/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/*.m4

lib/.gitignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
1-
2-
libunivalue-uninstalled.pc
3-
libunivalue.pc
4-
libunivalue.a
51
gen
6-
72
.libs
8-
*.lo
9-
*.la
10-

test/.gitignore

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
21
unitester
3-
4-
*.log
5-
*.trs
6-
7-
.libs

0 commit comments

Comments
 (0)