Code

some cleanups
[fusedav.git] / src / Makefile
1 CC=gcc
2 CFLAGS=-g -Wall -pipe -O0 -I/usr/include/neon -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -ansi
3 LIBS=/usr/lib/libfuse.a -lpthread -lneon
5 all: fusedav
7 fusedav: fusedav.o statcache.o filecache.o session.o openssl-thread.o
8         $(CC) -o $@ $^ $(LIBS)
10 clean:
11         rm -f *.o fusedav
13 .PHONY: clean all