From f9a6cc2cc9905059ff76fe95e07d0810840028a6 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 31 Mar 2015 11:59:17 +0100 Subject: util.table, Makefile: New C module that allows pre-allocation of tables to improve performance and decrease memory fragmentation --- util-src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util-src/Makefile') diff --git a/util-src/Makefile b/util-src/Makefile index 3a1ba3f2..3674975c 100644 --- a/util-src/Makefile +++ b/util-src/Makefile @@ -14,9 +14,9 @@ CFLAGS+=-ggdb .PHONY: all install clean .SUFFIXES: .c .o .so -all: encodings.so hashes.so net.so pposix.so signal.so +all: encodings.so hashes.so net.so pposix.so signal.so table.so -install: encodings.so hashes.so net.so pposix.so signal.so +install: encodings.so hashes.so net.so pposix.so signal.so table.so install *.so ../util/ clean: -- cgit v1.2.3