Skip to content

Commit

Permalink
Squashed 'src/univalue/' changes from 87d9045..5839ac3
Browse files Browse the repository at this point in the history
5839ac3 Merge pull request #13 from theuni/move-lib
3f248e0 build: move libunivalue.la to the root dir
a68aed5 Merge pull request #12 from jmcorgan/add-ignores
81cafe3 Update and consolidate git ignores

git-subtree-dir: src/univalue
git-subtree-split: 5839ac3
  • Loading branch information
MarcoFalke committed Oct 9, 2015
1 parent 2f9f082 commit 313e7f5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 19 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Expand Up @@ -19,4 +19,13 @@ test-driver
libtool
ltmain.sh

*.a
*.la
*.lo
*.logs
*.o
*.pc
*.trs

.dirstamp
.libs
10 changes: 5 additions & 5 deletions Makefile.am
Expand Up @@ -5,20 +5,20 @@ ACLOCAL_AMFLAGS = -I build-aux/m4
include_HEADERS = include/univalue.h
noinst_HEADERS = lib/univalue_escapes.h

lib_LTLIBRARIES = lib/libunivalue.la
lib_LTLIBRARIES = libunivalue.la

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

lib_libunivalue_la_SOURCES = \
libunivalue_la_SOURCES = \
lib/univalue.cpp \
lib/univalue_read.cpp \
lib/univalue_write.cpp

lib_libunivalue_la_LDFLAGS = \
libunivalue_la_LDFLAGS = \
-version-info $(LIBUNIVALUE_CURRENT):$(LIBUNIVALUE_REVISION):$(LIBUNIVALUE_AGE) \
-no-undefined
lib_libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include
libunivalue_la_CXXFLAGS = -I$(top_srcdir)/include

TESTS = test/unitester

Expand All @@ -38,7 +38,7 @@ noinst_PROGRAMS = $(TESTS)
TEST_DATA_DIR=test

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

Expand Down
Empty file removed build-aux/m4/.empty
Empty file.
1 change: 1 addition & 0 deletions build-aux/m4/.gitignore
@@ -0,0 +1 @@
/*.m4
8 changes: 0 additions & 8 deletions lib/.gitignore
@@ -1,10 +1,2 @@

libunivalue-uninstalled.pc
libunivalue.pc
libunivalue.a
gen

.libs
*.lo
*.la

6 changes: 0 additions & 6 deletions test/.gitignore
@@ -1,7 +1 @@

unitester

*.log
*.trs

.libs

0 comments on commit 313e7f5

Please sign in to comment.