summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Makefile b/src/Makefile
index bea2a08..e0dca3b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,16 +1,13 @@
CC=gcc
-CFLAGS=-g -Wall -pipe -O0 -I/usr/include/neon
+CFLAGS=-g -Wall -pipe -O0 -I/usr/include/neon -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -ansi
LIBS=/usr/lib/libfuse.a -lpthread -lneon
-all: fusexmp fusedav
-
-fusexmp: fusexmp.o
- $(CC) -o $@ $^ $(LIBS)
+all: fusedav
fusedav: fusedav.o statcache.o filecache.o session.o openssl-thread.o
$(CC) -o $@ $^ $(LIBS)
clean:
- rm -f *.o fusexmp fusedav
+ rm -f *.o fusedav
.PHONY: clean all