summaryrefslogtreecommitdiffhomepage
path: root/contrib/lpeg/Makefile
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-05-01 11:28:34 +0000
committerSteven Barth <steven@midlink.org>2009-05-01 11:28:34 +0000
commit67fbe1b33c2195cc763309ba7467100f56676467 (patch)
tree9d2f649d045e0da1e2df38d4ec896251861bb3a8 /contrib/lpeg/Makefile
parent78d8ad784bdc06d07e2fcac409f2052b1d13d5f3 (diff)
Remove Luasocket - obsoleted by nixio
Remove old luasocket based LuCI Httpd - obsoleted by lucittpd Remove lpeg - not in use Rewrite luci-splashd using nixio
Diffstat (limited to 'contrib/lpeg/Makefile')
-rw-r--r--contrib/lpeg/Makefile33
1 files changed, 0 insertions, 33 deletions
diff --git a/contrib/lpeg/Makefile b/contrib/lpeg/Makefile
deleted file mode 100644
index 90f42081e..000000000
--- a/contrib/lpeg/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-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)