mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 00:13:24 +00:00
Basic gettext support when building
Added basic support for building gettext locales in the Makefile. The po file name should match the target locale. [Dirk Hohndel: Used git mv to rename the German .po file] Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
870978331e
commit
f5de37dbcf
2 changed files with 9 additions and 1 deletions
10
Makefile
10
Makefile
|
@ -122,7 +122,7 @@ OBJS = main.o dive.o time.o profile.o info.o equipment.o divelist.o \
|
|||
parse-xml.o save-xml.o libdivecomputer.o print.o uemis.o uemis-downloader.o \
|
||||
gtk-gui.o statistics.o file.o cochran.o $(OSSUPPORT).o $(RESFILE)
|
||||
|
||||
$(NAME): $(OBJS)
|
||||
$(NAME): $(OBJS) gettext
|
||||
$(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS)
|
||||
|
||||
install: $(NAME)
|
||||
|
@ -211,8 +211,16 @@ uemis-downloader.o: uemis-downloader.c dive.h uemis.h
|
|||
$(OSSUPPORT).o: $(OSSUPPORT).c display-gtk.h
|
||||
$(CC) $(CFLAGS) $(OSSUPPORT_CFLAGS) -c $(OSSUPPORT).c
|
||||
|
||||
gettext: po/*.po
|
||||
@for MSG in $(wildcard po/*.po); do \
|
||||
LOC=`basename $$MSG .po`; \
|
||||
mkdir -p locale/$$LOC.UTF-8/LC_MESSAGES; \
|
||||
msgfmt -c -o locale/$$LOC.UTF-8/LC_MESSAGES/subsurface.mo $$MSG; \
|
||||
done
|
||||
|
||||
doc:
|
||||
$(MAKE) -C Documentation doc
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) *~ $(NAME) $(NAME).exe
|
||||
rm -rf locale
|
||||
|
|
Loading…
Add table
Reference in a new issue