ntfs-3g/libfuse-lite/Makefile.am
Erik Larsson 72bea99a8f Fix compilation of libfuse-lite on Solaris/OpenIndiana.
The OpenSolaris port of libfuse, from which our Solaris-port of
libfuse-lite originated, had to be supplied with some additional
compiler flags in order to compile.
The configure script now detects whether it is running on a Solaris
system. If that is the case it passes the proper compiler flags to
libfuse-lite, so it can compile properly.

Tested on:
- OpenIndiana oi_151a3 / gcc 3.4.3
- OpenIndiana oi_151a7 / gcc 4.3.3
- Solaris 11.1 / gcc 4.5.2
2012-10-28 05:23:39 +01:00

32 lines
558 B
Makefile

MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
if FUSE_INTERNAL
noinst_LTLIBRARIES = libfuse-lite.la
endif
libfuse_lite_la_CFLAGS= \
$(AM_CFLAGS) \
$(LIBFUSE_LITE_CFLAGS) \
-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