forked from pool/lua-luaunbound
16 lines
256 B
Diff
16 lines
256 B
Diff
|
--- a/GNUmakefile
|
||
|
+++ b/GNUmakefile
|
||
|
@@ -20,10 +20,8 @@
|
||
|
|
||
|
all: $(OUTPUT)
|
||
|
|
||
|
-lunbound.o: lunbound.c
|
||
|
-
|
||
|
-%.so: %.o
|
||
|
- $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
||
|
+%.so: %.c
|
||
|
+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
|
||
|
|
||
|
install:
|
||
|
install -d $(DESTDIR)$(LUA_LIBDIR)/
|