File

util-src/Makefile @ 7178:5953f415c815

mod_storage_sql: Treat non-existent archive IDs as beyound the end of the archive (fixes #624) (tested on sqlite3 only)
author Kim Alvefur <zash@zash.se>
date Mon, 22 Feb 2016 15:23:27 +0100
parent 7117:2b4432cc9c29
child 7187:3d2c2f0809ee
line wrap: on
line source


include ../config.unix

CFLAGS+=-ggdb -Wall -pedantic -I$(LUA_INCDIR)

INSTALL_DATA=install -m644
TARGET?=../util/

ALL=encodings.so hashes.so net.so pposix.so signal.so table.so ringbuffer.so

.PHONY: all install clean
.SUFFIXES: .c .o .so

all: $(ALL)

install: $(ALL)
	$(INSTALL_DATA) $^ $(TARGET)

clean:
	rm -f $(ALL)

encodings.so: LDLIBS+=$(IDNA_LIBS)

hashes.so: LDLIBS+=$(OPENSSL_LIBS)

%.so: %.o
	$(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)