mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
f40887c3c6
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
53 lines
967 B
Makefile
53 lines
967 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 utilunix.h \
|
|
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.c 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
|