mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
7e33c12685
Key emulation in editor was removed. Default key emulation is stored in misc/mc.keymap.default file. Emacs key emulation is stored in misc/mc.keymap.emacs. Editor options dialog was redesigned. Shortcut parser was fixed. Fixes after rebase to recent master. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
39 lines
596 B
Makefile
39 lines
596 B
Makefile
## Process this file with automake to create Makefile.in.
|
|
|
|
SUBDIRS = skins
|
|
|
|
LIBFILES_OUT = mc.ext
|
|
|
|
noinst_DATA = xterm.ad
|
|
|
|
pkgdata_DATA =
|
|
|
|
LIBFILES_CONST = \
|
|
cedit.menu \
|
|
edit.indent.rc \
|
|
edit.spell.rc \
|
|
mc.lib \
|
|
filehighlight.ini \
|
|
mc.keymap \
|
|
mc.keymap.default \
|
|
mc.keymap.emacs \
|
|
mc.menu \
|
|
mc.menu.sr
|
|
|
|
|
|
CLEANFILES = $(SCRIPTS_OUT)
|
|
|
|
cfgdir = $(sysconfdir)/@PACKAGE@
|
|
cfg_DATA = \
|
|
$(LIBFILES_CONST) \
|
|
$(LIBFILES_OUT) \
|
|
$(LIBFILES_ADD)
|
|
|
|
# Files processed by configure don't need to be here
|
|
EXTRA_DIST = \
|
|
$(LIBFILES_CONST) \
|
|
$(SCRIPTS_IN) \
|
|
$(noinst_DATA) \
|
|
$(pkgdata_DATA)
|
|
|