Makefile.am revision ca08ab68
1# -*- encoding: utf-8 -*- 2# 3# $Id $ 4# 5# Copyright © 2003 Keith Packard 6# 7# Permission to use, copy, modify, distribute, and sell this software and its 8# documentation for any purpose is hereby granted without fee, provided that 9# the above copyright notice appear in all copies and that both that 10# copyright notice and this permission notice appear in supporting 11# documentation, and that the name of the author(s) not be used in 12# advertising or publicity pertaining to distribution of the software without 13# specific, written prior permission. The authors make no 14# representations about the suitability of this software for any purpose. It 15# is provided "as is" without express or implied warranty. 16# 17# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 18# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 19# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR 20# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 21# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 22# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 23# PERFORMANCE OF THIS SOFTWARE. 24# 25 26INCLUDES=-I${top_srcdir}/src -I${top_srcdir} $(WARN_CFLAGS) 27 28TMPL=fccase.tmpl.h 29STMPL=${top_srcdir}/fc-case/${TMPL} 30TARG=fccase.h 31 32noinst_PROGRAMS=fc-case 33 34noinst_HEADERS=$(TARG) 35 36fc_case_SOURCES= \ 37 fc-case.c 38 39CASEFOLDING=CaseFolding.txt 40SCASEFOLDING=${top_srcdir}/fc-case/CaseFolding.txt 41 42EXTRA_DIST = $(TARG) $(TMPL) $(CASEFOLDING) 43 44if CROSS_COMPILING 45$(TARG): $(STMPL) fc-case.c $(SCASEFOLDING) 46 @echo Warning: cannot rebuild $(TARG) when cross-compiling 47else 48$(TARG): $(STMPL) fc-case$(EXEEXT) $(SCASEFOLDING) 49 $(AM_V_GEN) $(RM) $(TARG); \ 50 ./fc-case$(EXEEXT) $(SCASEFOLDING) < $(STMPL) > $(TARG).tmp && \ 51 mv $(TARG).tmp $(TARG) 52endif 53 54ALIAS_FILES = fcalias.h fcaliastail.h 55 56BUILT_SOURCES = $(ALIAS_FILES) 57 58$(ALIAS_FILES): 59 touch $(ALIAS_FILES) 60 61CLEANFILES = $(ALIAS_FILES) 62 63DISTCLEANFILES = $(TARG) 64 65MAINTAINERCLEANFILES = $(TARG) 66