public
Description: A JSON reader and writer library using GLib and GObject
Homepage: http://live.gnome.org/JsonGlib
Clone URL: git://github.com/ebassi/json-glib.git
json-glib / Makefile.am
100644 29 lines (18 sloc) 0.537 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
include $(top_srcdir)/Makefile.decl
 
SUBDIRS = json-glib doc
 
if ENABLE_GLIB_TEST
SUBDIRS += tests
endif
 
DIST_SUBDIRS = json-glib doc tests
 
pcfiles = json-glib-1.0.pc
 
json-glib-1.0.pc: json-glib.pc
  @cp -f $< $@
 
pkgconfig_DATA = $(pcfiles)
pkgconfigdir = $(libdir)/pkgconfig
 
EXTRA_DIST += json-glib.pc.in
 
CLEANFILES = $(pcfiles) test-report.xml
 
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags
 
dist-hook:
  git-log --stat > ChangeLog.in && \
  cp -f ChangeLog.in $(distdir)/ChangeLog && \
  rm -f ChangeLog.in