mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
71b1a8bf99
created structs: struct name_key_map_t struct key_config_t global_key_map_t add lookup_action replace editor key map struct to global_key_map_t add main_map screen_map replace command CK_* to src/cmddef.h add mc.keymap fix misc/Makefile.am add x_keymap add more commands Signed-off-by: Ilia Maslakov <il.smind@google.com>
36 lines
553 B
Makefile
36 lines
553 B
Makefile
## Process this file with automake to create Makefile.in.
|
|
|
|
SUBDIRS = skins
|
|
|
|
LIBFILES_OUT = mc.ext
|
|
|
|
noinst_DATA = xterm.ad
|
|
|
|
pkgdata_DATA = mc.menu.sr
|
|
|
|
LIBFILES_CONST = \
|
|
cedit.menu \
|
|
edit.indent.rc \
|
|
edit.spell.rc \
|
|
mc.lib \
|
|
filehighlight.ini \
|
|
mc.keymap \
|
|
mc.menu
|
|
|
|
|
|
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)
|
|
|