1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

localized: make configs build

This commit is contained in:
Jon Trulson 2019-11-30 16:18:45 -07:00
parent e42c0cc1be
commit 376f1e15ee
8 changed files with 86 additions and 0 deletions

View file

@ -476,14 +476,19 @@ programs/localized/Makefile
programs/localized/util/Makefile
programs/localized/C/Makefile
programs/localized/C/app-defaults/Makefile
programs/localized/C/config/Makefile
programs/localized/de_DE.UTF-8/Makefile
programs/localized/de_DE.UTF-8/app-defaults/Makefile
programs/localized/de_DE.UTF-8/config/Makefile
programs/localized/fr_FR.UTF-8/Makefile
programs/localized/fr_FR.UTF-8/app-defaults/Makefile
programs/localized/fr_FR.UTF-8/config/Makefile
programs/localized/it_IT.UTF-8/Makefile
programs/localized/it_IT.UTF-8/app-defaults/Makefile
programs/localized/it_IT.UTF-8/config/Makefile
programs/localized/es_ES.UTF-8/Makefile
programs/localized/es_ES.UTF-8/app-defaults/Makefile
programs/localized/es_ES.UTF-8/config/Makefile
])

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/C.am
include ../../templates/config.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/German.am
include ../../templates/config.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/Greek.am
include ../../templates/config.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/Spanish.am
include ../../templates/config.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/French.am
include ../../templates/config.am

View file

@ -0,0 +1,5 @@
MAINTAINERCLEANFILES = Makefile.in
include ../../templates/Italian.am
include ../../templates/config.am

View file

@ -0,0 +1,51 @@
# process the config files...
BUILT_SOURCES = sys.resources sys.session sys.font sys.dtwmrc \
Xresources dtfile.config home.session current.session \
display.home.session display.current.session
if SOLARIS
BUILT_SOURCES += Xresources.ow
endif
CLEANFILES = $(BUILT_SOURCES)
TOP = $(top_builddir)/programs
MERGE = $(top_builddir)/programs/localized/util/merge
sys.resources: $(TOP)/dtsession/sys.resources sys.resources.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
sys.session: $(TOP)/dtsession/sys.session sys.session.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
sys.font: $(TOP)/dtsession/sys.font sys.font.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
sys.dtwmrc: $(TOP)/dtwm/sys.dtwmrc sys.dtwmrc.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
Xresources: $(TOP)/dtlogin/config/Xresources Xresources.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
if SOLARIS
Xresources.ow: $(TOP)/dtlogin/config/Xresources.ow Xresources.ow.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
endif
dtfile.config: $(TOP)/dtfile/dtfile.config dtfile.config.tmsg
$(MERGE) -lang $(LANG) $@.tmsg < $< > $@ || $(RM) $@
home.session: $(TOP)/dtlogin/config/home.session _common.session.tmsg
$(MERGE) -lang $(LANG) _common.session.tmsg < $< > $@ || $(RM) $@
current.session: $(TOP)/dtlogin/config/current.session _common.session.tmsg
$(MERGE) -lang $(LANG) _common.session.tmsg < $< > $@ || $(RM) $@
display.home.session: $(TOP)/dtlogin/config/display.home.session _common.session.tmsg
$(MERGE) -lang $(LANG) _common.session.tmsg < $< > $@ || $(RM) $@
display.current.session: $(TOP)/dtlogin/config/display.current.session _common.session.tmsg
$(MERGE) -lang $(LANG) _common.session.tmsg < $< > $@ || $(RM) $@