Move json utilities to tools directory
This commit is contained in:
parent
a88379bf36
commit
84a179f4ca
3
.gitignore
vendored
3
.gitignore
vendored
@ -10,10 +10,7 @@
|
|||||||
/Doxyfile
|
/Doxyfile
|
||||||
/install-sh
|
/install-sh
|
||||||
/ip.cpp
|
/ip.cpp
|
||||||
/json-clean
|
|
||||||
/json.cpp
|
/json.cpp
|
||||||
/json-schema
|
|
||||||
/json-validate
|
|
||||||
/libgim-*.tar.*
|
/libgim-*.tar.*
|
||||||
.libs
|
.libs
|
||||||
/libtool
|
/libtool
|
||||||
|
26
Makefile.am
26
Makefile.am
@ -170,26 +170,26 @@ libutil_la_SOURCES = $(UTIL_FILES)
|
|||||||
libutil_la_CXXFLAGS = $(AM_CXXFLAGS)
|
libutil_la_CXXFLAGS = $(AM_CXXFLAGS)
|
||||||
libutil_la_LIBADD = $(BOOST_SYSTEM_LIB)
|
libutil_la_LIBADD = $(BOOST_SYSTEM_LIB)
|
||||||
|
|
||||||
bin_PROGRAMS = \
|
bin_PROGRAMS = \
|
||||||
json-clean \
|
tools/json-clean \
|
||||||
json-validate \
|
tools/json-validate \
|
||||||
json-schema
|
tools/json-schema
|
||||||
|
|
||||||
json_clean_SOURCES = json/clean.cpp
|
tools_json_clean_SOURCES = json/clean.cpp
|
||||||
json_clean_DEPENDENCIES = $(top_builddir)/libutil.la
|
tools_json_clean_DEPENDENCIES = $(top_builddir)/libutil.la
|
||||||
json_clean_LDFLAGS = \
|
tools_json_clean_LDFLAGS = \
|
||||||
$(top_builddir)/.libs/libutil.a \
|
$(top_builddir)/.libs/libutil.a \
|
||||||
$(AM_LDFLAGS)
|
$(AM_LDFLAGS)
|
||||||
|
|
||||||
json_schema_SOURCES = json/schema.cpp
|
tools_json_schema_SOURCES = json/schema.cpp
|
||||||
json_schema_DEPENDENCIES = $(top_builddir)/libutil.la
|
tools_json_schema_DEPENDENCIES = $(top_builddir)/libutil.la
|
||||||
json_schema_LDFLAGS = \
|
tools_json_schema_LDFLAGS = \
|
||||||
$(top_builddir)/.libs/libutil.a \
|
$(top_builddir)/.libs/libutil.a \
|
||||||
$(AM_LDFLAGS)
|
$(AM_LDFLAGS)
|
||||||
|
|
||||||
|
|
||||||
json_validate_SOURCES = json/validate.cpp
|
tools_json_validate_SOURCES = json/validate.cpp
|
||||||
json_validate_DEPENDENCIES = $(top_builddir)/libutil.la
|
tools_json_validate_DEPENDENCIES = $(top_builddir)/libutil.la
|
||||||
json_validate_LDFLAGS = \
|
tools_json_validate_LDFLAGS = \
|
||||||
$(top_builddir)/.libs/libutil.a \
|
$(top_builddir)/.libs/libutil.a \
|
||||||
$(AM_LDFLAGS)
|
$(AM_LDFLAGS)
|
||||||
|
3
tools/.gitignore
vendored
Normal file
3
tools/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
json-clean
|
||||||
|
json-schema
|
||||||
|
json-validate
|
Loading…
Reference in New Issue
Block a user