logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 8552f6ced4042d9236e383cce0b06d997adfc6ce
parent da3548eb41280b48a27704f07d2d6e9ed2e87004
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date:   Sun,  7 Jun 2015 17:42:36 +0200

Initial Makefile

Diffstat:
AMakefile | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,18 @@ +############################################################################### +# # +# Logswan (c) by Frederic Cambus 2015 # +# https://github.com/fcambus/logswan # +# # +# Last Updated: 2015/06/07 # +# # +############################################################################### + +CC = gcc +TARGET = all +CFLAGS = -Wall -ansi -pedantic + +all : + $(CC) $(CFLAGS) -o logswan logswan.c + +clean: + rm -f logswan *.o *.core core