mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
6c5f5bf768
* moved from lib/vfs/mc-vfs to lib/vfs; * split by directories for VFS-plugins and moved to src/vfs; * lib/vfs/vfs-impl.h was merged into lib/vfs/vfs.h. Signed-off-by: Andrew Borodin <aborodin@vmail.ru> Signed-off-by: Slava Zanko <slavazanko@gmail.com>
53 lines
947 B
Makefile
53 lines
947 B
Makefile
SUBDIRS = event filehighlight mcconfig search skin tty vfs strutil widget
|
|
|
|
noinst_LTLIBRARIES = libmc.la
|
|
|
|
SUBLIB_includes = \
|
|
event.h event-types.h \
|
|
filehighlight.h \
|
|
mcconfig.h \
|
|
search.h \
|
|
skin.h \
|
|
strescape.h \
|
|
strutil.h \
|
|
widget.h
|
|
|
|
SRC_mc_utils = \
|
|
utilunix.c \
|
|
unixcompat.h \
|
|
util.c util.h
|
|
|
|
|
|
libmc_la_SOURCES = \
|
|
$(SUBLIB_includes) \
|
|
$(SRC_mc_utils) \
|
|
fileloc.h \
|
|
fs.h \
|
|
hook.c hook.h \
|
|
glibcompat.c glibcompat.h \
|
|
global.h \
|
|
keybind.c keybind.h \
|
|
lock.c lock.h \
|
|
timefmt.c timefmt.h
|
|
|
|
if USE_MAINTAINER_MODE
|
|
libmc_la_SOURCES += logging.c logging.h
|
|
endif
|
|
|
|
if CHARSET
|
|
libmc_la_SOURCES += charsets.c charsets.h
|
|
endif
|
|
|
|
libmc_la_CFLAGS= $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
|
|
|
|
libmc_la_LIBADD = \
|
|
event/libmcevent.la \
|
|
filehighlight/libmcfilehighlight.la \
|
|
mcconfig/libmcconfig.la \
|
|
search/libsearch.la \
|
|
strutil/libmcstrutil.la \
|
|
skin/libmcskin.la \
|
|
tty/libmctty.la \
|
|
vfs/libmcvfs.la \
|
|
widget/libmcwidget.la
|