Browse Source

build: link libjson.la against libjson-c.la

By using libtool linkage the dependencies are automatically created, so parallel
builds just work.
pull/113/head
Ross Burton 12 years ago
parent
commit
24da731845
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile.am

+ 2
- 2
Makefile.am View File

@@ -39,10 +39,10 @@ libjson_cinclude_HEADERS = \
libjson_c_la_LDFLAGS = -version-info 2:0:0 -no-undefined

if ENABLE_OLDNAME_COMPAT
libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined -ljson-c
libjson_la_LDFLAGS = -version-info 1:0:1 -no-undefined

# Temporary libjson library. This will be removed after one release.
libjson_la_LIBADD = -ljson-c
libjson_la_LIBADD = libjson-c.la
endif




Loading…
Cancel
Save