Tools.mk revision a4e54154
1# -*- encoding: utf-8 -*-
2#
3# Copyright © 2003  Keith Packard
4# Copyright © 2013  Google, Inc.
5#
6# Permission to use, copy, modify, distribute, and sell this software and its
7# documentation for any purpose is hereby granted without fee, provided that
8# the above copyright notice appear in all copies and that both that
9# copyright notice and this permission notice appear in supporting
10# documentation, and that the name of the author(s) not be used in
11# advertising or publicity pertaining to distribution of the software without
12# specific, written prior permission.  The authors make no
13# representations about the suitability of this software for any purpose.  It
14# is provided "as is" without express or implied warranty.
15#
16# THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18# EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22# PERFORMANCE OF THIS SOFTWARE.
23#
24# Google Author(s): Behdad Esfahbod
25
26DIR=fc-$(TAG)
27OUT=fc$(TAG)
28TMPL=$(OUT).tmpl.h
29TARG=$(OUT).h
30TOOL=$(srcdir)/$(DIR).py
31
32noinst_SCRIPTS = $(TOOL)
33EXTRA_DIST = $(TARG) $(TMPL) $(DIST)
34
35$(TARG): $(TMPL) $(TOOL) $(DEPS)
36	$(AM_V_GEN) \
37	$(RM) $(TARG) && \
38	$(PYTHON) $(TOOL) $(ARGS) --template $< --output $(TARG).tmp && \
39	mv $(TARG).tmp $(TARG) || ( $(RM) $(TARG).tmp && false )
40noinst_HEADERS=$(TARG)
41
42ALIAS_FILES = fcalias.h fcaliastail.h
43
44BUILT_SOURCES = $(ALIAS_FILES)
45
46$(ALIAS_FILES):
47	$(AM_V_GEN) touch $@
48
49CLEANFILES = $(ALIAS_FILES)
50
51MAINTAINERCLEANFILES = $(TARG)
52