forked from pool/lua-luaunbound
- Update to version 1.0.0: * make: Allow overriding pkg-config name of Lua * make: Get Lua install directory from pkg-config * Reduce scope of 'new' C function * Allow setting more than one upstream server * Support forwarding OBS-URL: https://build.opensuse.org/request/show/941293 OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luaunbound?expand=0&rev=4
16 lines
254 B
Diff
16 lines
254 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:
|
|
$(MKDIR) $(DESTDIR)$(LUA_LIBDIR)/
|