diff options
Diffstat (limited to 'lufis/Makefile')
-rw-r--r-- | lufis/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lufis/Makefile b/lufis/Makefile new file mode 100644 index 0000000..713e509 --- /dev/null +++ b/lufis/Makefile @@ -0,0 +1,10 @@ +CC = gcc +CFLAGS = -Wall -W -g +LDLIBS = -lfuse -lpthread -ldl -rdynamic +CPPFLAGS := -D_FILE_OFFSET_BITS=64 +#CPPFLAGS += -DDEBUG + +lufis: lufis.o options.o dircache.o + +clean: + rm -f *.o lufis |