evilsocket / Kerby

Kerby - Light weight video surveillance system.

Kerby / Makefile
100644 11 lines (9 sloc) 0.334 kb
1
2
3
4
5
6
7
8
9
10
11
CFLAGS= -w -O3 -funroll-loops -fno-rtti -fomit-frame-pointer -ffast-math -fno-stack-protector -ffunction-sections `avifile-config --cflags`
LFLAGS= `avifile-config --libs`
 
all:
g++ *.cpp -o kerbyd $(CFLAGS) $(LFLAGS)
install:
#For testing purpose only, do not run this !
scp -r ../kerby root@ganryu:/root
clean:
rm -f *.o kerbyd