Code

some cleanups
[fusedav.git] / src / Makefile
index bea2a08f33d5abcfca1618161bd0ce97c2132852..e0dca3b1f83c0dff97eda10cdd955a6d99065382 100644 (file)
@@ -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