Software / code / prosody
Comparison
util-src/Makefile @ 6610:7c4cf87f4dff
util.table, Makefile: New C module that allows pre-allocation of tables to improve performance and decrease memory fragmentation
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Tue, 31 Mar 2015 11:59:17 +0100 |
| parent | 5699:e9f5384f5ff1 |
| child | 6876:d1fc95d22f33 |
comparison
equal
deleted
inserted
replaced
| 6608:b6e558febb7a | 6610:7c4cf87f4dff |
|---|---|
| 12 CFLAGS+=-ggdb | 12 CFLAGS+=-ggdb |
| 13 | 13 |
| 14 .PHONY: all install clean | 14 .PHONY: all install clean |
| 15 .SUFFIXES: .c .o .so | 15 .SUFFIXES: .c .o .so |
| 16 | 16 |
| 17 all: encodings.so hashes.so net.so pposix.so signal.so | 17 all: encodings.so hashes.so net.so pposix.so signal.so table.so |
| 18 | 18 |
| 19 install: encodings.so hashes.so net.so pposix.so signal.so | 19 install: encodings.so hashes.so net.so pposix.so signal.so table.so |
| 20 install *.so ../util/ | 20 install *.so ../util/ |
| 21 | 21 |
| 22 clean: | 22 clean: |
| 23 rm -f *.o | 23 rm -f *.o |
| 24 rm -f *.so | 24 rm -f *.so |