CFLAGS= -Wall -g -D_FILE_OFFSET_BITS=64 -I/usr/include/lzo/ -O2 -s -fomit-frame-pointer
LIBS= -lfuse -lz -llzo2

default: lzo_fs

%.o:	%.c %.h
	gcc -c $< $(CFLAGS)


lzo_fs:	 LZOlayer_fs.c
	gcc -o $@ $^ -g  $(CFLAGS) $(LIBS)


clean:
	rm -fv *.o lzo_fs zlib_fs
