Ticket #1649: Prepare for prerelease mc-4.7.0-pre3 (code cleanup)
[midnight-commander/osp/navarfil.git] / src / Makefile.am
blobbe5137a72a904ae0cf4974d7234e0f7a280dd8fe
1 SUBDIRS = mcconfig search tty viewer filehighlight skin
3 AM_CFLAGS = $(GLIB_CFLAGS) -I$(top_srcdir) $(PCRE_CFLAGS)
5 localedir = $(datadir)/locale
6 pkglibexecdir =         $(libexecdir)/@PACKAGE@
8 bin_PROGRAMS = mc mcmfmt
10 if CONS_SAVER
11 pkglibexec_PROGRAMS = cons.saver
12 AM_CPPFLAGS = -DDATADIR=\""$(pkgdatadir)/"\" -DLOCALEDIR=\""$(localedir)"\" \
13         -DSAVERDIR=\""$(pkglibexecdir)"\" \
14         -DSYSCONFDIR=\""$(sysconfdir)/@PACKAGE@/"\"
15 else
16 AM_CPPFLAGS = -DDATADIR=\""$(pkgdatadir)/"\" \
17         -DLOCALEDIR=\""$(localedir)"\" \
18         -DSYSCONFDIR=\""$(sysconfdir)/@PACKAGE@/"\"
19 endif
21 noinst_PROGRAMS = man2hlp
22 man2hlp_LDADD = $(GLIB_LIBS)
24 mcmfmt_SOURCES = mfmt.c
26 cons_saver_SOURCES = cons.saver.c
28 man2hlp_SOURCES = man2hlp.c glibcompat.c
30 if USE_EDIT
31 EDITLIB = ../edit/libedit.a
32 endif
34 if USE_VFS
35 if USE_SAMBA_FS
36 VFSLIB = ../vfs/libvfs-mc.a ../vfs/samba/libsamba.a
37 else
38 VFSLIB = ../vfs/libvfs-mc.a
39 endif
40 endif
42 MCCONFIGLIB = mcconfig/libmcconfig.la
43 SEARCHLIB = search/libsearch.la
44 TTYLIB =  tty/libmctty.la
45 VIEWERLIB = viewer/libmcviewer.la
46 FILEHIGHLIGHTLIB=filehighlight/libmcfilehighlight.la
47 SKINLIB =  skin/libmcskin.la
49 mc_LDADD = $(EDITLIB) $(VFSLIB) $(FILEHIGHLIGHTLIB) $(SKINLIB) \
50         $(MCCONFIGLIB) $(SEARCHLIB) $(TTYLIB) $(VIEWERLIB) \
51         $(INTLLIBS) $(MCLIBS) $(SLANGLIB) $(LIBICONV) $(GLIB_LIBS)
53 CHARSET_SRC = charsets.c charsets.h selcodepage.c selcodepage.h
55 SRCS =  args.c args.h achown.c achown.h background.c background.h       \
56         boxes.c boxes.h chmod.c chmod.h chown.c chown.h cmd.c cmd.h     \
57         command.c command.h complete.c cons.handler.c                   \
58         cons.saver.h dialog.c dialog.h dir.c dir.h                      \
59         execute.c execute.h ext.c ext.h file.c filegui.c                \
60         filegui.h file.h filenot.c fileopctx.c fileopctx.h find.c       \
61         fileloc.h find.h fs.h                                           \
62         glibcompat.c glibcompat.h global.h help.c help.h hotlist.c      \
63         hotlist.h info.c info.h layout.c                                \
64         layout.h learn.c learn.h listmode.c listmode.h history.h        \
65         logging.h logging.c main.c main.h main-widgets.h                \
66         menu.c menu.h mountlist.c mountlist.h                           \
67         option.c option.h panel.h panelize.c panelize.h screen.c        \
68         setup.c setup.h  subshell.c subshell.h textconf.c textconf.h    \
69         tree.c tree.h treestore.c treestore.h timefmt.h user.c          \
70         user.h util.c util.h utilunix.c vfsdummy.h                      \
71         widget.c widget.h wtools.c wtools.h unixcompat.h                \
72         ecs.h ecs.c                                                     \
73         keybind.c keybind.h cmddef.h                                    \
74         strutil.h strutil.c strutilascii.c strutil8bit.c strutilutf8.c  \
75         search/search.h strescape.c strescape.h
77 if CHARSET
78 mc_SOURCES = $(SRCS) $(CHARSET_SRC)
79 else
80 mc_SOURCES = $(SRCS)
81 endif
83 EXTRA_DIST = man2hlp.c $(CHARSET_SRC)
85 # automated testing
87 TESTS =                 ecs-test
89 check_PROGRAMS =        ecs-test
90 ecs_test_SOURCES =      ecs-test.c ecs.h ecs.c
91 ecs_test_LDADD =        $(GLIB_LIBS) $(INTLLIBS) $(MCLIBS)
93 # end of automated testing
95 install-exec-hook:
96         $(MAKE) install_mcview
97 if USE_EDIT
98         $(MAKE) install_mcedit
99 endif
102 # Make relative symlinks, but do the right thing if LN_S is `ln' or `cp'.
104 install_mcview:
105         cd $(DESTDIR)$(bindir)/$(binprefix) && rm -f mcview && $(LN_S) mc mcview
107 install_mcedit:
108         cd $(DESTDIR)$(bindir)/$(binprefix) && rm -f mcedit && $(LN_S) mc mcedit
110 uninstall-hook:
111         rm -f $(DESTDIR)$(bindir)/$(binprefix)/mcview
112 if USE_EDIT
113         rm -f $(DESTDIR)$(bindir)/$(binprefix)/mcedit
114 endif