blob: 6fa2b20597c7e82f29af1b5ef400a825a6f08e4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ LUA_CFLAGS := $(shell pkg-config --cflags --libs $(lua_package))
all: subprocess.so subprocess.html
subprocess.so: $(SOURCES)
- $(CC) $(CFLAGS) $(LUA_CFLAGS) -DOS_POSIX -shared -fPIC -o $@ $(SOURCES)
+ $(CC) $(CFLAGS) $(LUA_CFLAGS) -DOS_POSIX -DSHARE_LIOLIB -shared -fPIC -o $@ $(SOURCES)
subprocess.html: subprocess.txt
$(ASCIIDOC) $<
|