Comparison

util-src/Makefile @ 7117:2b4432cc9c29

Add util.ringbuffer, a ringbuffer with a file handle like interface
author Kim Alvefur <zash@zash.se>
date Tue, 02 Feb 2016 20:24:27 +0100
parent 6886:27f5a76e3fa5
child 7187:3d2c2f0809ee
comparison
equal deleted inserted replaced
7115:805d068d2fd5 7117:2b4432cc9c29
1 1
2 include ../config.unix 2 include ../config.unix
3 3
4 CFLAGS+=-ggdb -I$(LUA_INCDIR) 4 CFLAGS+=-ggdb -Wall -pedantic -I$(LUA_INCDIR)
5 5
6 INSTALL_DATA=install -m644 6 INSTALL_DATA=install -m644
7 TARGET?=../util/ 7 TARGET?=../util/
8 8
9 ALL=encodings.so hashes.so net.so pposix.so signal.so table.so 9 ALL=encodings.so hashes.so net.so pposix.so signal.so table.so ringbuffer.so
10 10
11 .PHONY: all install clean 11 .PHONY: all install clean
12 .SUFFIXES: .c .o .so 12 .SUFFIXES: .c .o .so
13 13
14 all: $(ALL) 14 all: $(ALL)