1## Process this file with automake to create Makefile.in
2#
3# Copyright (c) 2002 Tama Communications Corporation
4#
5# This file is free software; as a special exception the author gives
6# unlimited permission to copy and/or distribute it, with or without
7# modifications, as long as this notice is preserved.
8#
9# This program is distributed in the hope that it will be useful, but
10# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
11# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12#
13bin_PROGRAMS= gozilla
14
15AM_CPPFLAGS = @AM_CPPFLAGS@
16
17LDADD = @LDADD@
18
19gozilla_DEPENDENCIES = $(LDADD)
20
21man_MANS = gozilla.1
22
23EXTRA_DIST = $(man_MANS) const.h manual.in
24
25# for osx-default
26gtagsdir = $(DESTDIR)${localstatedir}/gtags
27install-data-hook:
28	if [ ! -d $(gtagsdir) ]; then \
29		$(MKDIR_P) $(gtagsdir); \
30		chmod 777 $(gtagsdir); \
31	fi
32