1234567891011121314151617181920212223242526272829303132333435 |
- ## 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)
|