mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
11 lines
216 B
Makefile
11 lines
216 B
Makefile
|
|
|
|
LUAVER = 5.1
|
|
|
|
LUAPC := lua$(LUAVER)
|
|
LUA_CFLAGS := $(shell pkg-config --cflags $(LUAPC))
|
|
|
|
$(LUAVER)/bit32.so: lbitlib.c
|
|
mkdir -p $(LUAVER)
|
|
$(CC) -I c-api $(CFLAGS) $(LUA_CFLAGS) -shared -fPIC $(LDFLAGS) -o $@ $<
|
|
|