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