mirror of https://github.com/MidnightCommander/mc
32 lines
502 B
Makefile
32 lines
502 B
Makefile
## Process this file with automake to create Makefile.in.
|
|
|
|
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 \
|
|
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)
|
|
|