diff options
author | Steven Barth <steven@midlink.org> | 2008-08-21 18:36:06 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-21 18:36:06 +0000 |
commit | 9cf785aba8b5fd7254b22bfac6732b36ff74d1e0 (patch) | |
tree | 873370678c93f134b254f97dd64466aafcf95f3a /contrib/lpeg | |
parent | cfc153984d3b518e90efff94454eab36ba2560b7 (diff) |
Added LPEG
Diffstat (limited to 'contrib/lpeg')
-rw-r--r-- | contrib/lpeg/.gitignore | 1 | ||||
-rw-r--r-- | contrib/lpeg/Makefile | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/contrib/lpeg/.gitignore b/contrib/lpeg/.gitignore new file mode 100644 index 000000000..8cb74f164 --- /dev/null +++ b/contrib/lpeg/.gitignore @@ -0,0 +1 @@ +lpeg-* diff --git a/contrib/lpeg/Makefile b/contrib/lpeg/Makefile new file mode 100644 index 000000000..90f42081e --- /dev/null +++ b/contrib/lpeg/Makefile @@ -0,0 +1,33 @@ +include ../../build/config.mk +include ../../build/gccconfig.mk + +LPEG_VERSION = 0.8.1 +LPEG_SITE = http://www.inf.puc-rio.br/~roberto/lpeg +LPEG_DIR = lpeg-$(LPEG_VERSION) +LPEG_FILE = $(LPEG_DIR).tar.gz +LPEG_URL = $(LPEG_SITE)/$(LPEG_FILE) + +all: compile + +include ../../build/module.mk + +$(LPEG_FILE): + wget -O $@ $(LPEG_URL) || rm -f $@ + +$(LPEG_DIR)/.prepared: $(LPEG_FILE) + rm -rf $(LPEG_DIR) + tar xvfz $(LPEG_FILE) + touch $@ + +compile: $(LPEG_DIR)/.prepared + $(MAKE) -C $(LPEG_DIR) CC=$(CC) COPT="$(CFLAGS) $(LUA_CFLAGS) -fpic" + mkdir -p dist$(LUA_LIBRARYDIR) + cp $(LPEG_DIR)/{lpeg.so,re.lua} dist$(LUA_LIBRARYDIR) + +luasource: +luastrip: +luacompile: +compile-all: compile + +clean: + rm -rf $(LPEG_DIR) $(LPEG_FILE) |