# # mknmz-wwwoffle # # Makefile # # Makefile.am # # # Copyright (C) 2000,2001,2002 WATANABE Yoshimasa # # This file is part of the mknmz-wwwoffle. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., 59 # Temple Place, Suite 330, Boston, MA 02111-1307 USA # # # $Id: Makefile.am,v 1.11 2002/03/13 13:14:33 naney Exp $ # # ## ############################################################################ ## automake options ## ############################################################################ AUTOMAKE_OPTIONS := gnits ## ############################################################################ ## subdirectories ## ############################################################################ SUBDIRS = test debian ## ############################################################################ ## files ## ############################################################################ bin_SCRIPTS = mknmz-wwwoffle man_MANS = mknmz-wwwoffle.1 filter_DATA = wwwofflecache.pl EXTRA_DIST = README.ja INSTALL.ja mknmz-wwwoffle.in localedir = $(datadir)/locale confdir = $(sysconfdir)/namazu filterdir = $(datadir)/namazu/filter indexdir = $(localstatedir)/namazu/index perllibdir = $(datadir)/namazu/pl templatedir = $(datadir)/namazu/template mknmz-wwwoffle: mknmz-wwwoffle.in Makefile rm -f mknmz sed -e 's!\@PERL\@!$(PERL)!g' \ -e 's!\@VERSION\@!$(VERSION)!g' \ -e 's!@PERLLIBDIR@!$(perllibdir)!g' \ -e 's!@FILTERDIR@!(filterdir)!g' \ -e 's!@TEMPLATEDIR@!$(templatedir)!g' \ -e 's!\@MKNMZ\@!@MKNMZ@!g' \ -e 's!\@NAMAZUCONFDIR\@!$(sysconfdir)/namazu!g' \ -e 's!\@ENABLE_DB\@!@ENABLE_DB@!g' \ $(srcdir)/mknmz-wwwoffle.in >mknmz-wwwoffle ############################################################################### # file information ############################################################################### # # for emacs # Local Variables: # mode:Makefile # fill-column:76 # End: # ############################################################################### # end of file "Makefile.am" ###############################################################################