mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
c36a810c09
Now --disable-vfs doesn't mean the total disabling of VFS. With --disable-vfs option, the localfs module is built to use the change of file panel encoding. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
44 lines
748 B
Makefile
44 lines
748 B
Makefile
SUBDIRS = filehighlight mcconfig search skin tty vfs strutil
|
|
|
|
noinst_LTLIBRARIES = libmc.la
|
|
|
|
SUBLIB_includes = \
|
|
filehighlight.h \
|
|
mcconfig.h \
|
|
search.h \
|
|
skin.h \
|
|
strescape.h \
|
|
strutil.h
|
|
|
|
SRC_mc_utils = \
|
|
utilunix.c \
|
|
unixcompat.h \
|
|
util.c util.h
|
|
|
|
|
|
libmc_la_SOURCES = \
|
|
$(SUBLIB_includes) \
|
|
$(SRC_mc_utils) \
|
|
fileloc.h \
|
|
fs.h \
|
|
glibcompat.c glibcompat.h \
|
|
global.h \
|
|
lock.c lock.h \
|
|
timefmt.h
|
|
|
|
if USE_MAINTAINER_MODE
|
|
libmc_la_SOURCES += logging.c logging.h
|
|
endif
|
|
|
|
|
|
libmc_la_CFLAGS= $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
|
|
|
libmc_la_LIBADD = \
|
|
filehighlight/libmcfilehighlight.la \
|
|
mcconfig/libmcconfig.la \
|
|
search/libsearch.la \
|
|
strutil/libmcstrutil.la \
|
|
skin/libmcskin.la \
|
|
tty/libmctty.la \
|
|
vfs/mc-vfs/libvfs-mc.la
|