mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
suppbindir = $(pkgdatadir)/bin
|
|
|
|
if CHARSET
|
|
LIBFILES_ADD = mc.charsets
|
|
else
|
|
LIBFILES_ADD =
|
|
endif
|
|
|
|
LIBFILES_OUT = mc.ext
|
|
|
|
LIBFILES_CONST = mc.lib mc.menu mc.menu.sr cedit.menu edit.indent.rc \
|
|
edit.spell.rc
|
|
|
|
noinst_DATA = README.xterm mcserv.init mcserv.pamd xterm.ad
|
|
|
|
SCRIPTS_IN = mc.csh.in mc.sh.in mc-wrapper.csh.in mc-wrapper.sh.in
|
|
SCRIPTS_OUT = mc.csh mc.sh mc-wrapper.csh mc-wrapper.sh
|
|
|
|
suppbin_SCRIPTS = $(SCRIPTS_OUT)
|
|
|
|
pkgdata_DATA = $(LIBFILES_CONST) $(LIBFILES_ADD) $(LIBFILES_OUT)
|
|
|
|
CLEANFILES = $(SCRIPTS_OUT)
|
|
|
|
# Files processed by configure don't need to be here
|
|
EXTRA_DIST = \
|
|
$(LIBFILES_CONST) \
|
|
$(SCRIPTS_IN) \
|
|
$(noinst_DATA) \
|
|
mc.charsets
|
|
|
|
mc.csh: $(srcdir)/mc.csh.in
|
|
sed "s%@""suppbindir@%$(suppbindir)%" $(srcdir)/mc.csh.in > mc.csh
|
|
|
|
mc.sh: $(srcdir)/mc.sh.in
|
|
sed "s%@""suppbindir@%$(suppbindir)%" $(srcdir)/mc.sh.in > mc.sh
|
|
|
|
mc-wrapper.csh: $(srcdir)/mc-wrapper.csh.in
|
|
sed "s%@""bindir@%$(bindir)%" $(srcdir)/mc-wrapper.csh.in > mc-wrapper.csh
|
|
|
|
mc-wrapper.sh: $(srcdir)/mc-wrapper.sh.in
|
|
sed "s%@""bindir@%$(bindir)%" $(srcdir)/mc-wrapper.sh.in > mc-wrapper.sh
|
|
|