summaryrefslogtreecommitdiffhomepage
path: root/contrib/lpeg/Makefile
blob: 90f42081eb242a987f692ce2d646323bf4c31f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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)