Renamed the variables for the catalogs and re-introduced the target 'catkeys',

which builds just the en.catkeys inside HAIKU_OUTPUT_DIR/objects/catalogs


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39130 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-10-24 16:55:33 +00:00
parent 4fd570d307
commit 9de5b02252
2 changed files with 10 additions and 4 deletions

View File

@ -198,8 +198,11 @@ if $(packageError) {
}
# Pseudo-target to build all targets that are localized.
NotFile catalogs ;
Depends catalogs : $(HAIKU_LOCALIZED_CATALOGS) ;
NotFile LocalizedTargets ;
Depends LocalizedTargets : $(HAIKU_LOCALIZED_TARGETS) ;
NotFile catalogs ;
Depends catalogs : $(HAIKU_LOCALE_CATALOGS) ;
NotFile catkeys ;
Depends catkeys : $(HAIKU_LOCALE_OUTPUT_CATKEYS) ;

View File

@ -158,5 +158,8 @@ rule DoCatalogs target : signature : sources : sourceLanguage : regexp
HAIKU_LOCALIZED_TARGETS += $(target) ;
# For the pseudo-target catalogs
HAIKU_LOCALIZED_CATALOGS += $(catkeysFiles:S=.catalog) ;
HAIKU_LOCALE_CATALOGS += $(catkeysFiles:S=.catalog) ;
# For the pseudo-target catkeys
HAIKU_LOCALE_OUTPUT_CATKEYS += $(generatedCatalog:S=.catkeys) ;
}