mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
b2ee413f03
Renamed and moved src/editor/editloc.[ch] -> lib/lock.[ch]. Renamed lock handling functions. Fixed library order in src/Makefile.am. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
48 lines
786 B
Makefile
48 lines
786 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
|
|
|
|
if ENABLE_VFS
|
|
libmc_la_LIBADD += vfs/mc-vfs/libvfs-mc.la
|
|
endif
|
|
|