Skip to content

Commit

Permalink
Fix dependencies so that make -j works
Browse files Browse the repository at this point in the history
Also bump ready for a 2.6 tag.
  • Loading branch information
wez committed Jun 9, 2013
1 parent 57e83b2 commit d335591
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ doc_DATA = README.markdown
docdir = ${prefix}/share/doc/watchman-$(VERSION)

THIRDPARTY_CPPFLAGS = -I$(top_srcdir)/thirdparty/jansson -I$(top_builddir)/thirdparty/jansson
JSON_LIB = -L. -lwmanjson
JSON_LIB = -L. libwmanjson.a

watchman_CPPFLAGS = $(THIRDPARTY_CPPFLAGS) @IRONMANCFLAGS@
watchman_LDADD = $(JSON_LIB)
Expand Down Expand Up @@ -72,7 +72,7 @@ libwmanjson_a_SOURCES = \
# bundled testing library
libtap_a_CPPFLAGS = $(THIRDPARTY_CPPFLAGS)
libtap_a_SOURCES = thirdparty/tap.c
TAP_LIB = -ltap
TAP_LIB = libtap.a

# unit tests
TESTS = tests/argv.t tests/log.t tests/bser.t
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([watchman], [2.5], [], [watchman])
AC_INIT([watchman], [2.6], [], [watchman])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects])

Expand Down

0 comments on commit d335591

Please sign in to comment.