2012-11-27 16:02:59 -06:00
|
|
|
# Converted to automake by thompson@dtosolutions.com 26NOV12
|
|
|
|
|
|
|
|
# setup is only used by distribution developers, not package developers.
|
|
|
|
# Still, as a matter of allowing patching, its not a bad idea to distribute
|
|
|
|
# the developer setup script in the tarball.
|
2012-12-04 19:50:10 -06:00
|
|
|
EXTRA_DIST = setup.sh config.h.in ChangeLog VERSION lexer.l lexer.h gen_utf8_tables.py jq.spec testdata
|
2012-11-27 16:02:59 -06:00
|
|
|
|
|
|
|
# README.md is expected in Github projects, good stuff in it, so we'll
|
|
|
|
# distribute it and install it with the package in the doc directory.
|
|
|
|
docdir = ${datadir}/doc/${PACKAGE}
|
|
|
|
dist_doc_DATA = README.md INSTALL COPYING AUTHORS README NEWS
|
|
|
|
|
2012-11-28 01:08:23 -06:00
|
|
|
JQ_INCS = jq_parser.h builtin.h bytecode.h compile.h execute.h forkable_stack.h frame_layout.h jv.h jv_dtoa.h jv_parse.h jv_unicode.h locfile.h opcode.h opcode_list.h parser.y jv_utf8_tables.gen.h
|
|
|
|
|
|
|
|
JQ_SRC = opcode.c bytecode.c compile.c execute.c builtin.c jv.c jv_parse.c jv_print.c jv_dtoa.c jv_unicode.c lexer.c $(JQ_INCS)
|
2012-11-27 16:02:59 -06:00
|
|
|
|
|
|
|
if DEVCFLAGS_ENABLED
|
2012-11-28 01:08:23 -06:00
|
|
|
DEVCFLAGS = -Wextra -Wall -Wno-missing-field-initializers -Wno-unused-parameter -std=gnu99 -ggdb -Wno-unused-function
|
2012-11-27 16:02:59 -06:00
|
|
|
endif
|
|
|
|
|
2012-11-28 01:08:23 -06:00
|
|
|
# Tell YACC (bison) autoconf macros that you want a header file created.
|
|
|
|
# If the --warnings=all fails, you probably have an old version of bison
|
|
|
|
# OSX ships an old bison, so update with homebrew or macports
|
|
|
|
AM_YFLAGS = --warnings=all -d
|
|
|
|
|
|
|
|
bin_PROGRAMS = jq jq_test
|
|
|
|
BUILT_SOURCES = jv_utf8_tables.gen.h lexer.h lexer.c
|
2012-11-27 16:02:59 -06:00
|
|
|
jq_SOURCES = $(JQ_SRC) main.c
|
2012-12-04 18:12:53 -06:00
|
|
|
jq_CPPFLAGS = $(DEVCFLAGS) -O -DJQ_DEBUG=0
|
2012-11-27 16:02:59 -06:00
|
|
|
|
|
|
|
|
|
|
|
TESTS = jq_test
|
|
|
|
jq_test_SOURCES = $(JQ_SRC) jq_test.c
|
|
|
|
jq_test_CPPFLAGS = $(DEVCFLAGS) -DJQ_DEBUG=1
|
|
|
|
LOG_COMPILER = valgrind
|
|
|
|
AM_LOG_FLAGS = --error-exitcode=1 -q --leak-check=full
|
|
|
|
|
2012-11-28 01:08:23 -06:00
|
|
|
# nasty circular dependency on header files between the generated C files
|
|
|
|
parser.o: lexer.c
|
|
|
|
|
|
|
|
lexer.o: parcer.c
|
2012-11-27 16:02:59 -06:00
|
|
|
|
2012-11-28 01:08:23 -06:00
|
|
|
lexer.c: parser.h
|
|
|
|
|
|
|
|
# While there is some autoconf macro support for lex/flex, it doesn't support
|
|
|
|
# header file creation so we'll use good old make
|
|
|
|
lexer.c: lexer.l
|
|
|
|
flex -o lexer.c --header-file=lexer.h lexer.l
|
|
|
|
lexer.h: lexer.c
|
2012-11-27 16:02:59 -06:00
|
|
|
|
|
|
|
jv_utf8_tables.gen.h: gen_utf8_tables.py
|
|
|
|
python $^ > $@
|
2012-11-28 01:08:23 -06:00
|
|
|
|
2012-11-27 16:02:59 -06:00
|
|
|
jv_unicode.c: jv_utf8_tables.gen.h
|
|
|
|
|
|
|
|
ChangeLog:
|
2012-12-03 17:27:40 -06:00
|
|
|
git log --name-status > $@ || echo "no changelog" > $@
|
2012-11-27 16:02:59 -06:00
|
|
|
|
|
|
|
main.c: config.h
|
|
|
|
|
|
|
|
releasetag:
|
|
|
|
git tag -s "jq-$$(cat VERSION)" -m "jq release $$(cat VERSION)"
|
|
|
|
|
|
|
|
# can probably delete and have RPM created off autoconf generated tarball releases
|
|
|
|
RELEASE ?= 1
|
2012-12-04 14:49:39 -06:00
|
|
|
rpm: jq jq_test
|
2012-11-27 16:02:59 -06:00
|
|
|
@echo "Packaging jq as an RPM ..."
|
2012-12-03 17:27:40 -06:00
|
|
|
mkdir -p rpm/SOURCES rpm/BUILD rpm/BUILDROOT rpm/RPMS rpm/SPECS
|
|
|
|
cp jq-$$(cat VERSION).tar.gz rpm/SOURCES/
|
|
|
|
rpmbuild -tb --define "_topdir ${PWD}/rpm" --define "_prefix ${HOME}" --define "version $$(cat VERSION)" --define "release ${RELEASE}" rpm/SOURCES/jq-$$(cat VERSION).tar.gz
|
2012-12-04 16:29:01 -06:00
|
|
|
find rpm/RPMS/ -name "*.rpm" -exec mv {} ./ \;
|
2012-12-03 17:27:40 -06:00
|
|
|
rm -rf rpm
|
2012-11-28 01:08:23 -06:00
|
|
|
|
|
|
|
dist-clean-local:
|
|
|
|
rm -f $(BUILT_SOURCES)
|