Add src/execute.c:execute_external_editor_or_viewer() function.
[midnight-commander.git] / src / vfs / smbfs / Makefile.am
blob1b4b224b8ec6b69d456bcfcf43a062d1ee6bdfa0
1 DIST_SUBDIRS =
3 SUBDIRS = helpers
5 AM_CPPFLAGS = \
6         -DCONFIGDIR=\""@smbconfigdir@"\" \
7         $(GLIB_CFLAGS) \
8         -I$(top_srcdir)
10 noinst_LTLIBRARIES = libvfs-smbfs.la
12 libvfs_smbfs_la_SOURCES = \
13         smbfs.c smbfs.h
15 SAMBA_DIST =                    \
16         Makefile.in             \
17         aclocal.m4              \
18         configure.ac            \
19         configure               \
20         internals.doc           \
21         parsing.doc             \
22         include/byteorder.h     \
23         include/charset.h       \
24         include/client.h        \
25         include/config.h.in     \
26         include/includes.h      \
27         include/kanji.h         \
28         include/local.h         \
29         include/nameserv.h      \
30         include/nterr.h         \
31         include/proto.h         \
32         include/smb.h           \
33         include/stamp-h.in      \
34         include/trans2.h        \
35         include/version.h       \
36         lib/charcnv.c           \
37         lib/charset.c           \
38         lib/debug.c             \
39         lib/interface.c         \
40         lib/kanji.c             \
41         lib/md4.c               \
42         lib/netmask.c           \
43         lib/slprintf.c          \
44         lib/system.c            \
45         lib/time.c              \
46         lib/username.c          \
47         lib/util.c              \
48         lib/util_file.c         \
49         lib/util_sock.c         \
50         lib/util_str.c          \
51         libsmb/clientgen.c      \
52         libsmb/namequery.c      \
53         libsmb/nmblib.c         \
54         libsmb/nterr.c          \
55         libsmb/pwd_cache.c      \
56         libsmb/smbdes.c         \
57         libsmb/smbencrypt.c     \
58         libsmb/smberr.c         \
59         param/loadparm.c        \
60         param/params.c
62 dist-hook:
63         $(mkinstalldirs) $(distdir)/helpers
64         $(mkinstalldirs) $(distdir)/helpers/include
65         $(mkinstalldirs) $(distdir)/helpers/lib
66         $(mkinstalldirs) $(distdir)/helpers/libsmb
67         $(mkinstalldirs) $(distdir)/helpers/param
68         for I in $(SAMBA_DIST); do \
69           cp -p $(srcdir)/helpers/$$I $(distdir)/helpers/$$I || exit 1; \
70         done
72 mostlyclean-local:
73         if test -f helpers/Makefile; then \
74           (cd helpers && $(MAKE) mostlyclean) \
75         else :; fi
77 clean-local:
78         if test -f helpers/Makefile; then \
79           (cd helpers && $(MAKE) clean) \
80         else :; fi
82 distclean-local:
83         if test -f helpers/Makefile; then \
84           (cd helpers && $(MAKE) distclean) \
85         else :; fi