summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-03-29 18:23:21 +0000
committerLennart Poettering <lennart@poettering.net>2004-03-29 18:23:21 +0000
commit9115735709c570347236bccbe34ddc8fe6e6e8dc (patch)
tree11792ea7f303df6273baf7343ce76a4fb2c30458 /src/Makefile
parent868905c5d44902e293d9837bdcca3751e2b92dc8 (diff)
some cleanups
git-svn-id: file:///home/lennart/svn/public/fusedav/trunk@4 e35a362c-bbd6-0310-a59f-a4efcb1729c4
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