diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-19 02:18:28 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-19 02:18:28 +0000 |
commit | 7bf803250be75dac62c6e048fa675c93c9093b9a (patch) | |
tree | f84bb33ebc6ba26e2fc2a2b19e9f8e537de61a62 /Makefile | |
parent | 2d0ead91d7e4a6ccdbf3029baf3aca66a7729b9b (diff) |
build: integrate po files in the build system
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -14,8 +14,12 @@ build: gccbuild luabuild gccbuild: for i in $(MODULES); do make -C$$i compile; done -luabuild: - for i in $(MODULES); do make -C$$i luabuild; done +luabuild: i18nbuild + for i in $(MODULES); do HOST=$(realpath host) make -C$$i luabuild; done + +i18nbuild: + mkdir -p host/lua-po + ./build/i18n-po2lua.pl ./po host/lua-po clean: rm -rf docs |