diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-02 20:24:27 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-02 20:24:27 +0100 |
commit | ea0373f3adbf6e2b9cbd3dce173da40a2a49b19c (patch) | |
tree | 03bc62ffb8dffaa08d4ea7c991f09460458197d8 /util-src/Makefile | |
parent | a1e077c5e7d4f6d2768c47a6847fbe8eea0f28d8 (diff) | |
download | prosody-ea0373f3adbf6e2b9cbd3dce173da40a2a49b19c.tar.gz prosody-ea0373f3adbf6e2b9cbd3dce173da40a2a49b19c.zip |
Add util.ringbuffer, a ringbuffer with a file handle like interface
Diffstat (limited to 'util-src/Makefile')
-rw-r--r-- | util-src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-src/Makefile b/util-src/Makefile index 5f35b81b..85b190b9 100644 --- a/util-src/Makefile +++ b/util-src/Makefile @@ -1,12 +1,12 @@ include ../config.unix -CFLAGS+=-ggdb -I$(LUA_INCDIR) +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 +ALL=encodings.so hashes.so net.so pposix.so signal.so table.so ringbuffer.so .PHONY: all install clean .SUFFIXES: .c .o .so |