blob: c357f5d2c2e9f9e270a198ba1cb9b790e77d49be (
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
34
35
36
37
38
39
40
41
42
43
44
45
|
include ../../build/config.mk
include ../../build/gccconfig.mk
LUAPOSIX_VERSION = 5.1.2
LUAPOSIX_SITE = http://luaforge.net/frs/download.php/3063/
LUAPOSIX_DIR = luaposix-$(LUAPOSIX_VERSION)
LUAPOSIX_FILE = $(LUAPOSIX_DIR).tar.gz
LUAPOSIX_URL = $(LUAPOSIX_SITE)/$(LUAPOSIX_FILE)
LUAPOSIX_PATCHDIR = patches
all: compile
$(LUAPOSIX_FILE):
wget -O $@ $(LUAPOSIX_URL) || rm -f $@
$(LUAPOSIX_PATCHDIR)/series:
(cd $(LUAPOSIX_PATCHDIR); ls *.patch | sort > series)
$(LUAPOSIX_DIR)/.prepared: $(LUAPOSIX_FILE)
rm -rf $(LUAPOSIX_DIR)
tar xvfz $(LUAPOSIX_FILE)
ln -s ../$(LUAPOSIX_PATCHDIR) $(LUAPOSIX_DIR)/patches
touch $@
$(LUAPOSIX_DIR)/.patched: $(LUAPOSIX_DIR)/.prepared $(LUAPOSIX_PATCHDIR)/series
(cd $(LUAPOSIX_DIR); \
if [ -x "$$(which quilt 2>/dev/null)" ]; then \
quilt push -a; \
else \
cat patches/*.patch | patch -p1; \
fi; \
)
touch $@
compile: $(LUAPOSIX_DIR)/.patched
$(MAKE) -C $(LUAPOSIX_DIR) CC=$(CC) CFLAGS="$(CFLAGS) $(LUA_CFLAGS)" LDFLAGS="$(LDFLAGS) $(LUA_SHLIBS)" OS="$(OS)"
mkdir -p dist$(LUA_LIBRARYDIR)
cp $(LUAPOSIX_DIR)/posix.so dist$(LUA_LIBRARYDIR)
luasource:
compile-all: compile
clean:
rm -rf $(LUAPOSIX_DIR) $(LUAPOSIX_FILE)
rm -f $(LUAPOSIX_PATCHDIR)/series
|