mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
9a8aeeea13
Order the include directories so that those defined for ntfs-3g have priority over locally defined ones.
35 lines
608 B
Makefile
35 lines
608 B
Makefile
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
|
|
|
if FUSE_INTERNAL
|
|
noinst_LTLIBRARIES = libfuse-lite.la
|
|
endif
|
|
|
|
libfuse_lite_la_CFLAGS= \
|
|
$(AM_CFLAGS) \
|
|
$(LIBFUSE_LITE_CFLAGS)
|
|
|
|
libfuse_lite_la_CPPFLAGS= \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir)/include/fuse-lite
|
|
|
|
libfuse_lite_la_LIBADD = $(LIBFUSE_LITE_LIBS)
|
|
|
|
libfuse_lite_la_SOURCES = \
|
|
fuse.c \
|
|
fuse_i.h \
|
|
fuse_kern_chan.c \
|
|
fuse_loop.c \
|
|
fuse_lowlevel.c \
|
|
fuse_misc.h \
|
|
fuse_opt.c \
|
|
fuse_session.c \
|
|
fuse_signals.c \
|
|
fusermount.c \
|
|
helper.c \
|
|
mount.c \
|
|
mount_util.c \
|
|
mount_util.h
|
|
|
|
libs: libfuse-lite.la
|