Software /
code /
prosody
File
util-src/Makefile @ 7016:e0a0af42b09f
util.cache (and tests): Call on_evict after insertion of the new key, so inside on_evict we can be more certain about the current state of the cache (i.e. full, new item added, old item removed)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 22 Dec 2015 20:10:07 +0000 |
parent | 6886:27f5a76e3fa5 |
child | 7117:2b4432cc9c29 |
line wrap: on
line source
include ../config.unix CFLAGS+=-ggdb -I$(LUA_INCDIR) INSTALL_DATA=install -m644 TARGET?=../util/ ALL=encodings.so hashes.so net.so pposix.so signal.so table.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)