gnunet-fuse

GNUnet file-sharing directory mounting via FUSE
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (661B)


      1 # This Makefile.am is in the public domain
      2 SUBDIRS = .
      3 
      4 AM_CPPFLAGS = \
      5   -I$(top_srcdir)/src/include \
      6   -I$(top_srcdir) \
      7   @GNUNET_CFLAGS@
      8 
      9 
     10 bin_PROGRAMS = gnunet-fuse
     11 
     12 gnunet_fuse_SOURCES = \
     13   gnunet-fuse.c gnunet-fuse.h \
     14   gfs_download.c gfs_download.h \
     15   mutex.c mutex.h \
     16   readdir.c \
     17   read.c \
     18   open.c \
     19   getattr.c \
     20   gettext.h
     21 #
     22 #	mkdir.c \
     23 #	mknod.c \
     24 #	release.c \
     25 #	rename.c \
     26 #	rmdir.c \
     27 #	truncate.c \
     28 #	unlink.c \
     29 #	utimens.c \
     30 #	write.c
     31 
     32 gnunet_fuse_LDADD = \
     33   -lgnunetutil \
     34   -lfuse \
     35   -lgnunetfs \
     36   $(INTLLIBS) $(GNUNET_LIBS) -lpthread
     37 gnunet_fuse_CPPFLAGS = \
     38   $(AM_CPPFLAGS) \
     39   -D_FILE_OFFSET_BITS=64 \
     40   -DFUSE_USE_VERSION=26