summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index e0dca3b..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-CC=gcc
-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: fusedav
-
-fusedav: fusedav.o statcache.o filecache.o session.o openssl-thread.o
- $(CC) -o $@ $^ $(LIBS)
-
-clean:
- rm -f *.o fusedav
-
-.PHONY: clean all