From 4254d09127a619735707ed35a32f21bb7bd5275a Mon Sep 17 00:00:00 2001 From: yosiokat Date: Mon, 8 Sep 2008 06:46:06 +0000 Subject: [PATCH] =?UTF-8?q?=E5=85=B1=E6=9C=89=E3=83=95=E3=82=A9=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=81=AE=E3=83=93=E3=83=AB=E3=83=89=E6=99=82=E3=81=AB?= =?UTF-8?q?=E3=80=81=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E5=90=8D=E3=81=AB?= =?UTF-8?q?=E3=83=95=E3=82=A9=E3=83=B3=E3=83=88=E3=83=87=E3=83=BC=E3=82=BF?= =?UTF-8?q?=E3=81=AE=E3=82=BF=E3=82=A4=E3=83=A0=E3=82=B9=E3=82=BF=E3=83=B3?= =?UTF-8?q?=E3=83=97=E3=82=92=E4=BB=98=E5=8A=A0=E3=81=99=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E5=A4=89=E6=9B=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2434 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- build/systemMenu_RED/sharedFont/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build/systemMenu_RED/sharedFont/Makefile b/build/systemMenu_RED/sharedFont/Makefile index 4a974bfd..f50ef934 100644 --- a/build/systemMenu_RED/sharedFont/Makefile +++ b/build/systemMenu_RED/sharedFont/Makefile @@ -34,6 +34,7 @@ FONT_ORG_RSC = $(addprefix $(FONT_ORG_DIR)/, $(FONTS)) ifneq ($(TWL_IPL_RED_PRIVATE_ROOT),) FONT_TABLE = TWLFontTable.dat +FONT_TABLE_WITH_TIMESTAMP = TWLFontTable_$(FONT_TIMESTAMP).dat endif GEN_FONT_TABLE = $(SYSMENU_TOOLSDIR)/bin/genFontTable.plx @@ -42,16 +43,18 @@ GEN_FONT_TABLE = $(SYSMENU_TOOLSDIR)/bin/genFontTable.plx INSTALL_TARGETS = $(FONT_TABLE) INSTALL_DIR = $(TWL_IPL_RED_ROOT)/build/systemMenu_tools/SystemUpdater/data -LDIRT_CLEAN = +LDIRT_CLEAN = $(FONT_TABLE_WITH_TIMESTAMP) #---------------------------------------------------------------------------- include $(TWL_IPL_RED_ROOT)/build/buildtools/modulerules -do-build : $(FONT_TABLE) +do-build : $(FONT_TABLE) $(FONT_TABLE_WITH_TIMESTAMP) # compress sharedFonts and them in local directory $(FONT_TABLE): $(FONT_RSC) $(GEN_FONT_TABLE) $(GEN_FONT_TABLE) $(FONT_TIMESTAMP) $(FONT_RSC) +$(FONT_TABLE_WITH_TIMESTAMP): $(FONT_TABLE) + cp $< $@ #===== End of Makefile =====