diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-25 19:17:55 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-25 19:17:55 +0000 |
commit | 0e50aa690af6cd9f37fa97b4a521fe523cce3c39 (patch) | |
tree | c0ab4edc0dd221dfa3e6fb4eeba049ecc05326fe /libs/lmo/Makefile | |
parent | c647ff9f0e1af211a762dc9a773c1b5c4aacd168 (diff) |
libs/web: rewrite template engine, merge lmo library
- template parser: merge lmo library
- template parser: rewrite to operate on memory mapped files
- template parser: implement proper line number reporting on syntax errors
- template parser: process translate tags directly and bypass Lua
- template lmo: introduce load_catalog(), change_catalog() and close_catalog()
- template lmo: rewrite index processing to operate directly on the memory mapped file
- template lmo: implement binary search keys, reducing the lookup complexity to O(log n)
- po2lmo: write sorted indixes when generating *.lmo archives
- i18n: use the template parser for translations
- i18n: stub load(), loadc() and clear()
- i18n: map setlanguage() to load_catalog()
Diffstat (limited to 'libs/lmo/Makefile')
-rw-r--r-- | libs/lmo/Makefile | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/libs/lmo/Makefile b/libs/lmo/Makefile deleted file mode 100644 index a15390cbe5..0000000000 --- a/libs/lmo/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -ifneq (,$(wildcard ../../build/config.mk)) -include ../../build/config.mk -include ../../build/module.mk -include ../../build/gccconfig.mk -else -include standalone.mk -endif - -LMO_LDFLAGS = -LMO_CFLAGS = -LMO_SO = lmo.so -LMO_PO2LMO = po2lmo -LMO_LOOKUP = lookup -LMO_COMMON_OBJ = src/lmo_core.o src/lmo_hash.o -LMO_PO2LMO_OBJ = src/lmo_po2lmo.o -LMO_LOOKUP_OBJ = src/lmo_lookup.o -LMO_LUALIB_OBJ = src/lmo_lualib.o - -%.o: %.c - $(COMPILE) $(LMO_CFLAGS) $(LUA_CFLAGS) $(FPIC) -c -o $@ $< - -compile: build-clean $(LMO_COMMON_OBJ) $(LMO_PO2LMO_OBJ) $(LMO_LOOKUP_OBJ) $(LMO_LUALIB_OBJ) - $(LINK) $(SHLIB_FLAGS) $(LMO_LDFLAGS) -o src/$(LMO_SO) \ - $(LMO_COMMON_OBJ) $(LMO_LUALIB_OBJ) - $(LINK) $(LMO_LDFLAGS) -o src/$(LMO_PO2LMO) $(LMO_COMMON_OBJ) $(LMO_PO2LMO_OBJ) - $(LINK) $(LMO_LDFLAGS) -o src/$(LMO_LOOKUP) $(LMO_COMMON_OBJ) $(LMO_LOOKUP_OBJ) - mkdir -p dist$(LUA_LIBRARYDIR) - cp src/$(LMO_SO) dist$(LUA_LIBRARYDIR)/$(LMO_SO) - -install: build - cp -pR dist$(LUA_LIBRARYDIR)/* $(LUA_LIBRARYDIR) - -clean: build-clean - -build-clean: - rm -f src/*.o src/lookup src/po2lmo src/lmo.so - -host-compile: build-clean host-clean $(LMO_COMMON_OBJ) $(LMO_PO2LMO_OBJ) - $(LINK) $(LMO_LDFLAGS) -o src/$(LMO_PO2LMO) $(LMO_COMMON_OBJ) $(LMO_PO2LMO_OBJ) - -host-install: host-compile - cp src/$(LMO_PO2LMO) ../../build/$(LMO_PO2LMO) - -host-clean: - rm -f ../../build/$(LMO_PO2LMO) - |