summaryrefslogtreecommitdiffstats
path: root/tools/Makefile.am
blob: 93b5b9f837d88765b006b70a3307e01de95a42dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
if BUILD_TOOLS

AM_CFLAGS = \
	$(GLOBAL_CFLAGS) \
	-I$(top_srcdir)/include

AM_LDFLAGS =

bin_PROGRAMS = plistutil

plistutil_SOURCES = plistutil.c
plistutil_LDADD = $(top_builddir)/src/libplist-2.0.la

install-exec-hook:
	cd $(DESTDIR)$(bindir) && ln -sf plistutil plist2json

uninstall-hook:
	rm -f $(DESTDIR)$(bindir)/plist2json

endif