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
ebassi (author)
Sun Jun 28 15:52:34 -0700 2009
commit  7411cadc0fdd9ffc2bd7004c9980913ac857a495
tree    7d5bf8b38c6d91fcf5922d25b901be5c9d07b3ca
parent  112a8ec8dfd9c46304008b62e8ab256ed7714644
json-glib / Makefile.am
100644 38 lines (26 sloc) 0.862 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
30
31
32
33
34
35
36
37
38
include $(top_srcdir)/Makefile.decl
 
ACLOCAL_AMFLAGS = -I build/autotools
 
SUBDIRS = build json-glib doc
 
if ENABLE_GLIB_TEST
SUBDIRS += tests
endif
 
DIST_SUBDIRS = build 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:
@if test -d "$(srcdir)/.git"; then \
echo Generating ChangeLog ; \
( cd "$(srcdir)" \
&& $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp; \
echo Failed to generate ChangeLog >&2 ); \
else \
echo A git checkout is required to generate a ChangeLog >&2; \
fi