blob: e45bfb9c1d7cfc260de0cda4f48e670c4f595b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#
# $FML$
# $jaFML: Makefile.local,v 1.5 2003/06/20 22:03:11 fukachan Exp $
#
SHOW_CONFIG = ../../../utils/bin/show_config.pl --sgml
PROG_LIST = ../../../utils/bin/varlist.pl --sgml
PROG_CLASS = ../../../utils/bin/varclass.pl --sgml
SOURCE = ../../../etc/default_config.cf.en.in
# destination
VARLIST = variables/list.sgml
VARCLASS = variables/class.sgml
SGML_FILTER_RULES = variables/filter.rules.sgml
SGML_FILTER_SIZE = variables/filter.size.sgml
all: $(VARLIST) $(VARCLASS) $(SGML_FILTER_RULES) $(SGML_FILTER_SIZE)
$(VARLIST): $(SOURCE)
$(PROG_LIST) $(SOURCE) > $(VARLIST).new
mv $(VARLIST).new $(VARLIST)
$(VARCLASS): $(SOURCE)
$(PROG_CLASS) $(SOURCE) > $(VARCLASS).new
mv $(VARCLASS).new $(VARCLASS)
install: install_image
install_image: ../../en/figures/command.dataflow.gif
../../en/figures/command.dataflow.gif: command/states.gif
cp command/states.gif ../../en/figures/command.dataflow.gif
$(SGML_FILTER_RULES): $(SOURCE)
$(SHOW_CONFIG) --type filter_rules $(SOURCE) \
> $(SGML_FILTER_RULES).new
mv $(SGML_FILTER_RULES).new $(SGML_FILTER_RULES)
$(SGML_FILTER_SIZE): $(SOURCE)
$(SHOW_CONFIG) --type filter_size $(SOURCE) \
> $(SGML_FILTER_SIZE).new
mv $(SGML_FILTER_SIZE).new $(SGML_FILTER_SIZE)
|