summaryrefslogtreecommitdiff
path: root/i18npool/source
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 18:31:17 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2011-06-13 18:31:17 +0200
commit433dc982f03d4924edd01f37be41330a8699f310 (patch)
treea5d481f3a83c94f65257a0a6081d5b17f6643a69 /i18npool/source
parent31558d6086ef22330811827cb6ca43511f83b099 (diff)
get rid of unneded dependency (already in prj/build.lst)
furthermore the dependency did no longer match the command that was actually used in the rule also get rid of the unnecessary $/ escapes
Diffstat (limited to 'i18npool/source')
-rw-r--r--i18npool/source/breakiterator/data/makefile.mk22
1 files changed, 9 insertions, 13 deletions
diff --git a/i18npool/source/breakiterator/data/makefile.mk b/i18npool/source/breakiterator/data/makefile.mk
index 4dd2c1a3be6a..81bbbbd280e1 100644
--- a/i18npool/source/breakiterator/data/makefile.mk
+++ b/i18npool/source/breakiterator/data/makefile.mk
@@ -24,7 +24,7 @@
# for a copy of the LGPLv3 License.
#
#************************************************************************
-PRJ=..$/..$/..
+PRJ=../../..
PRJNAME=i18npool
TARGET=dict
@@ -46,13 +46,13 @@ SHL1TARGET=dict_ja
SHL1IMPLIB=i$(SHL1TARGET)
SHL1VERSIONMAP=$(TARGET).map
-SHL1DEF=$(MISC)$/$(SHL1TARGET).def
+SHL1DEF=$(MISC)/$(SHL1TARGET).def
DEF1NAME=$(SHL1TARGET)
SHL1OBJS= \
- $(SLO)$/dict_ja.obj
+ $(SLO)/dict_ja.obj
-LIB1TARGET= $(SLB)$/$(SHL1TARGET).lib
+LIB1TARGET= $(SLB)/$(SHL1TARGET).lib
LIB1OBJFILES=$(SHL1OBJS)
# Chinese dictionary
@@ -60,13 +60,13 @@ SHL2TARGET=dict_zh
SHL2IMPLIB=i$(SHL2TARGET)
SHL2VERSIONMAP=$(TARGET).map
-SHL2DEF=$(MISC)$/$(SHL2TARGET).def
+SHL2DEF=$(MISC)/$(SHL2TARGET).def
DEF2NAME=$(SHL2TARGET)
SHL2OBJS= \
- $(SLO)$/dict_zh.obj
+ $(SLO)/dict_zh.obj
-LIB2TARGET= $(SLB)$/$(SHL2TARGET).lib
+LIB2TARGET= $(SLB)/$(SHL2TARGET).lib
LIB2OBJFILES=$(SHL2OBJS)
DEPOBJFILES= \
@@ -76,9 +76,5 @@ DEPOBJFILES= \
# --- Targets ------------------------------------------------------
.INCLUDE : target.mk
-$(MISC)$/dict_%.cxx : %.dic
- $(AUGMENT_LIBRARY_PATH) $(OUT_FOR_BUILD)$/bin$/gendict $< $@
-
-# ugly - is this dependency really required here?
-$(foreach,i,$(shell @$(FIND) . -name "*.dic") $(MISC)$/dict_$(i:b).cxx) : $(BIN)$/gendict$(EXECPOST)
-
+$(MISC)/dict_%.cxx : %.dic
+ $(AUGMENT_LIBRARY_PATH) $(OUT_FOR_BUILD)/bin/gendict $< $@