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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#*************************************************************************
#*
#* $Workfile:$
#*
#* Creation date KR 28.06.99
#* last change $Author: hr $ $Date: 2005-02-11 14:53:59 $
#*
#* $Revision: 1.3 $
#*
#* $Logfile:$
#*
#* Copyright 2000 Sun Microsystems, Inc. All Rights Reserved.
#*
#*************************************************************************
PRJ = ..$/..
PRJNAME = help2
TARGET = auxiliary
# --- Settings -----------------------------------------------------
.INCLUDE : settings.mk
TREEFILES = \
sbasic.tree \
simpress.tree \
scalc.tree \
smath.tree \
schart.tree \
swriter.tree \
shared.tree
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk
ALLTAR : aux_dirs $(MISC)$/treefiles.done
AUX_DIR_LIST:=$(shell +$(FIND) . -type d ! -name "." | $(GREP) -v "CVS")
.IF "$(GUI)"=="UNX" || "$(USE_SHELL)"!="4nt"
aux_langdirs:=$(shell +find ./ -type d ! -name CVS ! -name "." | sed "s/\.\/\///" | sed "s/\.\///" )
.ELSE # "$(GUI)"=="UNX"
aux_langdirs:=$(subst,CVS, $(shell +-dir /ba:d ))
.ENDIF # "$(GUI)"=="UNX"
aux_alllangiso:=$(foreach,i,$(alllangiso) $(foreach,j,$(aux_langdirs) $(eq,$i,$j $i $(NULL))))
LOCTREEFILES:=$(foreach,i,$(aux_alllangiso) $(foreach,j,$(TREEFILES) $(MISC)$/$i$/$j))
$(MISC)$/treefiles.done : $(LOCTREEFILES)
@+$(PERL) $(PRJ)$/helpers$/update_tree.pl && $(TOUCH) $@
%.created:
@+-$(MKDIRHIER) $(@:d) && $(TOUCH) $@
$(LOCTREEFILES) : $(TREEFILES) $(PRJ)$/source$/text$/shared$/localize.sdf $$(@:d)$/dir.created
@+$(TOUCH) $@
aux_dirs .PHONY :
+echo aux_langdirs:=$(aux_langdirs) > $(INCCOM)$/aux_langs.mk
|