mirror of https://github.com/MidnightCommander/mc
320 lines
6.6 KiB
Plaintext
320 lines
6.6 KiB
Plaintext
# This is the "Makefile.in" that is used when vfs is built as part of
|
|
# mc. Any changes here must also be made in Makefile.am.
|
|
# x
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
@MCFG@@MCF@
|
|
|
|
CFLAGS = $(XCFLAGS) -D_LARGEFILE64_SOURCE
|
|
CPPFLAGS = $(XCPPFLAGS) -I$(builddir)/vfs -I$(srcdir)/samba/ubiqx -I$(srcdir)/samba/smbwrapper
|
|
LDFLAGS = $(XLDFLAGS)
|
|
DEFS = $(XDEFS)
|
|
LIBS = @LINTL@ @SHADOWLIB@ $(XLIBS) @TERMNET@ @PAMLIBS@ @LCRYPT@ $(XLIB)
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -m 755
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
AR = @AR@
|
|
|
|
#
|
|
# VFS code
|
|
#
|
|
NETFILES = tcputil.o fish.o ftpfs.o @smbfs@ mcfs.o utilvfs.o
|
|
|
|
SAMBAFILES= \
|
|
samba/param/loadparm.o \
|
|
samba/lib/time.o \
|
|
samba/lib/slprintf.o \
|
|
samba/lib/util.o \
|
|
samba/lib/debug.o \
|
|
samba/lib/system.o \
|
|
samba/lib/util_str.o \
|
|
samba/lib/kanji.o \
|
|
samba/lib/charcnv.o \
|
|
samba/lib/charset.o \
|
|
samba/lib/username.o \
|
|
samba/lib/util_file.o \
|
|
samba/lib/signal.o \
|
|
samba/lib/util_sock.o \
|
|
samba/lib/genrand.o \
|
|
samba/lib/md4.o \
|
|
samba/lib/doscalls.o \
|
|
samba/param/params.o \
|
|
samba/libsmb/clientgen.o \
|
|
samba/libsmb/pwd_cache.o \
|
|
samba/libsmb/smbencrypt.o \
|
|
samba/libsmb/smbdes.o \
|
|
samba/lib/util_unistr.o \
|
|
samba/lib/getsmbpass.o \
|
|
samba/libsmb/nmblib.o \
|
|
samba/libsmb/namequery.o\
|
|
samba/lib/interface.o \
|
|
samba/lib/netmask.o \
|
|
samba/libsmb/nterr.o \
|
|
samba/libsmb/smberr.o
|
|
|
|
SAMBA_DIST_TOPLEVEL = \
|
|
Makefile.in \
|
|
acconfig.h \
|
|
aclocal.m4 \
|
|
architecture.doc \
|
|
configure.in \
|
|
configure \
|
|
internals.doc \
|
|
parsing.doc \
|
|
samba-files \
|
|
smbadduser
|
|
|
|
SAMBA_DIST_INCLUDE = \
|
|
byteorder.h \
|
|
charset.h \
|
|
client.h \
|
|
config.h.in \
|
|
dlinklist.h \
|
|
includes.h \
|
|
kanji.h \
|
|
local.h \
|
|
nameserv.h \
|
|
ntdomain.h \
|
|
nterr.h \
|
|
proto.h \
|
|
rpc_dce.h \
|
|
rpc_lsa.h \
|
|
rpc_misc.h \
|
|
rpc_netlogon.h \
|
|
rpc_reg.h \
|
|
rpc_samr.h \
|
|
rpc_secdes.h \
|
|
rpc_srvsvc.h \
|
|
rpc_wkssvc.h \
|
|
rpcclient.h \
|
|
smb.h \
|
|
stamp-h.in \
|
|
trans2.h \
|
|
version.h
|
|
|
|
SAMBA_DIST_LIB = \
|
|
charcnv.c \
|
|
charset.c \
|
|
debug.c \
|
|
doscalls.c \
|
|
genrand.c \
|
|
getsmbpass.c \
|
|
interface.c \
|
|
kanji.c \
|
|
md4.c \
|
|
netmask.c \
|
|
signal.c \
|
|
slprintf.c \
|
|
system.c \
|
|
time.c \
|
|
username.c \
|
|
util.c \
|
|
util_file.c \
|
|
util_sock.c \
|
|
util_str.c \
|
|
util_unistr.c
|
|
|
|
SAMBA_DIST_LIBSMB = \
|
|
clientgen.c \
|
|
namequery.c \
|
|
nmblib.c \
|
|
nterr.c \
|
|
pwd_cache.c \
|
|
smbdes.c \
|
|
smbencrypt.c \
|
|
smberr.c
|
|
|
|
SAMBA_DIST_PARAM = \
|
|
loadparm.c \
|
|
params.c
|
|
|
|
SAMBA_DIST_SMBWRAPPER = \
|
|
smbw.h
|
|
|
|
SAMBA_DIST_TESTS = \
|
|
README \
|
|
crypttest.c \
|
|
fcntl_lock.c \
|
|
ftruncate.c \
|
|
ftruncroot.c \
|
|
getgroups.c \
|
|
shared_mmap.c \
|
|
summary.c \
|
|
sysv_ipc.c \
|
|
trapdoor.c \
|
|
trivial.c
|
|
|
|
SAMBA_DIST_UBIQX = \
|
|
COPYING.LIB \
|
|
README.UBI \
|
|
debugparse.h \
|
|
sys_include.h \
|
|
ubi_BinTree.h \
|
|
ubi_Cache.h \
|
|
ubi_SplayTree.h \
|
|
ubi_dLinkList.h \
|
|
ubi_sLinkList.h
|
|
|
|
NONETFILES = \
|
|
container.o \
|
|
cpio.o \
|
|
direntry.o \
|
|
extfs.o \
|
|
local.o \
|
|
names.o \
|
|
tar.o \
|
|
sfs.o \
|
|
vfs.o @undelfs_o@
|
|
|
|
VFSSRCS = \
|
|
container.c \
|
|
cpio.c \
|
|
direntry.c \
|
|
extfs.c \
|
|
ftpfs.c \
|
|
fish.c \
|
|
local.c \
|
|
local.h \
|
|
mcfs.c \
|
|
names.c \
|
|
mcserv.c \
|
|
sfs.c \
|
|
shared_tar_ext.c \
|
|
shared_ftp_fish.c \
|
|
smbfs.c \
|
|
tar.c \
|
|
tcputil.c \
|
|
undelfs.c \
|
|
utilvfs.c \
|
|
util-alone.c \
|
|
vfs.c
|
|
|
|
VFSHDRS = \
|
|
container.h \
|
|
extfs.h \
|
|
fish.h \
|
|
ftpfs.h \
|
|
mcfs.h \
|
|
names.h \
|
|
smbfs.h \
|
|
tar.h \
|
|
tcputil.h \
|
|
utilvfs.h \
|
|
vfs.h \
|
|
util-alone.h \
|
|
xdirentry.h
|
|
|
|
VFSOBJS = $(NONETFILES) @NETFILES@
|
|
|
|
Makefile: $(srcdir)/Make-mc.in $(builddir)/config.status
|
|
cd $(builddir) && CONFIG_FILES=vfs/Makefile:vfs/Make-mc.in CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
|
#
|
|
# Distribution variables
|
|
#
|
|
|
|
DISTVFS = Make-mc.in ChangeLog $(VFSSRCS) $(VFSHDRS) callback.h README README.fish
|
|
|
|
all: @LIBVFS@ @mcserv@
|
|
|
|
.c.o:
|
|
$(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $<
|
|
|
|
check:
|
|
@echo no tests are supplied.
|
|
|
|
SRC_LINKS = mad.c mad.h
|
|
|
|
$(SRC_LINKS):
|
|
for i in $(SRC_LINKS); do \
|
|
$(LN_S) $(mcsrcdir)/$$i . || exit 1; \
|
|
done
|
|
|
|
mcserv: mcserv.o tcputil.o mad.o
|
|
$(CC) $(LDFLAGS) -o mcserv mcserv.o tcputil.o mad.o $(LIBS)
|
|
|
|
$(SAMBAFILES):
|
|
cd samba && $(MAKE)
|
|
|
|
libvfs-mc.a: $(VFSOBJS) @SAMBAFILES@
|
|
$(RMF) $@
|
|
$(AR) cr $@ $(VFSOBJS) @SAMBAFILES@
|
|
-$(RANLIB) $@
|
|
|
|
showlibdep:
|
|
@echo 'OBJS="$(VFSOBJS)"'
|
|
|
|
cross:
|
|
$(MAKE) CC=gcc-linux CPP="gcc-linux -E" \
|
|
CPPFLAGS="$(CPPFLAGS) -I/usr/local/lib/gcc-lib/i386-linux-linux/include/ncurses "
|
|
|
|
TAGS: $(VFSSRCS)
|
|
etags $(VFSSRCS)
|
|
|
|
clean:
|
|
$(RMF) mcserv *.o core a.out *.a $(SRC_LINKS)
|
|
|
|
realclean: clean
|
|
$(RMF) .depend
|
|
$(RMF) TAGS
|
|
$(RMF) *~
|
|
|
|
distclean:
|
|
$(RMF) $(srcdir)/*~ $(srcdir)/mcserv $(srcdir)/*.o $(srcdir)/a.out
|
|
$(RMF) $(srcdir)/core $(srcdir)/libvfs-mc.a
|
|
(cd extfs; $(MAKE) distclean)
|
|
-if test $(srcdir) = .; then $(MAKE) realclean; fi
|
|
$(RMF) $(srcdir)/Makefile
|
|
|
|
install: install_@mcserv@ install.extfs
|
|
|
|
install_:
|
|
|
|
install_mcserv:
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
|
$(INSTALL_PROGRAM) mcserv $(DESTDIR)$(bindir)/$(binprefix)mcserv
|
|
|
|
install.extfs:
|
|
(cd extfs; $(MAKE) install)
|
|
|
|
uninstall:
|
|
(cd extfs; $(MAKE) uninstall)
|
|
$(RMF) $(DESTDIR)$(bindir)/$(binprefix)mcserv
|
|
|
|
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
|
|
|
distdir:
|
|
for I in $(DISTVFS); do $(CP) $(srcdir)/$$I $(distdir) || exit 1; done
|
|
mkdir $(distdir)/extfs
|
|
(cd extfs && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) \
|
|
distdir=../$(distdir)/extfs distdir) || exit 1
|
|
mkdir $(distdir)/samba
|
|
mkdir $(distdir)/samba/include
|
|
mkdir $(distdir)/samba/lib
|
|
mkdir $(distdir)/samba/libsmb
|
|
mkdir $(distdir)/samba/param
|
|
mkdir $(distdir)/samba/smbwrapper
|
|
mkdir $(distdir)/samba/tests
|
|
mkdir $(distdir)/samba/ubiqx
|
|
|
|
for I in $(SAMBA_DIST_TOPLEVEL); do $(CP) $(srcdir)/samba/$$I $(distdir)/samba || exit 1; done
|
|
for I in $(SAMBA_DIST_INCLUDE); do $(CP) $(srcdir)/samba/include/$$I $(distdir)/samba/include || exit 1; done
|
|
for I in $(SAMBA_DIST_LIB); do $(CP) $(srcdir)/samba/lib/$$I $(distdir)/samba/lib || exit 1; done
|
|
for I in $(SAMBA_DIST_LIBSMB); do $(CP) $(srcdir)/samba/libsmb/$$I $(distdir)/samba/libsmb || exit 1; done
|
|
for I in $(SAMBA_DIST_PARAM); do $(CP) $(srcdir)/samba/param/$$I $(distdir)/samba/param || exit 1; done
|
|
for I in $(SAMBA_DIST_SMBWRAPPER); do $(CP) $(srcdir)/samba/smbwrapper/$$I $(distdir)/samba/smbwrapper || exit 1; done
|
|
for I in $(SAMBA_DIST_TESTS); do $(CP) $(srcdir)/samba/tests/$$I $(distdir)/samba/tests || exit 1; done
|
|
for I in $(SAMBA_DIST_UBIQX); do $(CP) $(srcdir)/samba/ubiqx/$$I $(distdir)/samba/ubiqx || exit 1; done
|
|
|
|
depend dep: mcdep
|
|
|
|
fastdeploc:
|
|
|
|
# ***Dependencies***Do not edit***
|
|
@DOTDEPEND@
|
|
# ***End of dependencies***
|