xitiomet is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

xitiomet / nglog

Simple Command line utility for parsing nginx logs into csv files.

Clone this repository (size: 44.2 KB): HTTPS / SSH
hg clone https://bitbucket.org/xitiomet/nglog
hg clone ssh://hg@bitbucket.org/xitiomet/nglog

nglog / Makefile

Branch
default
CPC=g++

all: nglog

nglog: nglog.o
        $(CPC) $< -o $@
    
%.o: %.cc
        $(CPC) -I. -c $< -o $@

clean:
        rm -f nglog *~ *.o