mc/vfs/Make-mc.in

278 lines
5.6 KiB
Plaintext
Raw Normal View History

# 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
1998-02-27 07:54:42 +03:00
srcdir = @srcdir@
top_srcdir = @top_srcdir@
1998-02-27 07:54:42 +03:00
VPATH = @srcdir@
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
top_builddir = ..
1998-02-27 07:54:42 +03:00
@MCF@
1998-02-27 07:54:42 +03:00
SAMBA_INCLUDES =
CFLAGS = $(XCFLAGS)
CPPFLAGS = $(XCPPFLAGS) -I. $(SAMBA_INCLUDES)
1998-09-26 00:10:06 +04:00
LDFLAGS = $(XLDFLAGS)
DEFS = $(XDEFS)
LIBS = @SHADOWLIB@ $(XLIBS) @TERMNET@ @PAMLIBS@ @LCRYPT@ $(XLIB)
1998-09-26 00:10:06 +04:00
INSTALL = @INSTALL@
1998-02-27 07:54:42 +03:00
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -m 755
INSTALL_DATA = @INSTALL_DATA@
AR = @AR@
#
# VFS code
#
@USE_SAMBA_FS_TRUE@SMB_NETFILES = smbfs.o
@USE_SAMBA_FS_FALSE@SMB_NETFILES =
NETFILES = tcputil.o fish.o ftpfs.o mcfs.o utilvfs.o $(SMB_NETFILES)
1998-02-27 07:54:42 +03:00
SAMBA_DIST = \
1999-06-26 03:11:47 +04:00
Makefile.in \
acconfig.h \
1999-06-26 03:11:47 +04:00
aclocal.m4 \
architecture.doc \
configure.in \
1999-07-05 12:43:35 +04:00
configure \
1999-06-26 03:11:47 +04:00
internals.doc \
parsing.doc \
include/byteorder.h \
include/charset.h \
include/client.h \
include/config.h.in \
include/dlinklist.h \
include/includes.h \
include/kanji.h \
include/local.h \
include/nameserv.h \
include/ntdomain.h \
include/nterr.h \
include/proto.h \
include/rpc_dce.h \
include/rpc_lsa.h \
include/rpc_misc.h \
include/rpc_netlogon.h \
include/rpc_reg.h \
include/rpc_samr.h \
include/rpc_secdes.h \
include/rpc_srvsvc.h \
include/rpc_wkssvc.h \
include/rpcclient.h \
include/smb.h \
include/stamp-h.in \
include/trans2.h \
include/version.h \
lib/charcnv.c \
lib/charset.c \
lib/debug.c \
lib/doscalls.c \
lib/genrand.c \
lib/getsmbpass.c \
lib/interface.c \
lib/kanji.c \
lib/md4.c \
lib/netmask.c \
lib/signal.c \
lib/slprintf.c \
lib/system.c \
lib/time.c \
lib/username.c \
lib/util.c \
lib/util_file.c \
lib/util_sock.c \
lib/util_str.c \
lib/util_unistr.c \
libsmb/clientgen.c \
libsmb/namequery.c \
libsmb/nmblib.c \
libsmb/nterr.c \
libsmb/pwd_cache.c \
libsmb/smbdes.c \
libsmb/smbencrypt.c \
libsmb/smberr.c \
param/loadparm.c \
param/params.c \
tests/README \
tests/ftruncate.c \
tests/getgroups.c \
tests/summary.c \
tests/trivial.c
1998-09-26 00:10:06 +04:00
NONETFILES = \
cpio.o \
direntry.o \
1998-09-26 00:10:06 +04:00
extfs.o \
local.o \
names.o \
tar.o \
sfs.o \
1998-10-16 02:38:00 +04:00
vfs.o @undelfs_o@
1998-02-27 07:54:42 +03:00
1998-09-26 00:10:06 +04:00
VFSSRCS = \
container.c \
cpio.c \
direntry.c \
1998-09-26 00:10:06 +04:00
extfs.c \
ftpfs.c \
fish.c \
local.c \
local.h \
1998-09-26 00:10:06 +04:00
mcfs.c \
names.c \
mcserv.c \
sfs.c \
1999-07-04 14:21:43 +04:00
smbfs.c \
1998-09-26 00:10:06 +04:00
tar.c \
tcputil.c \
undelfs.c \
utilvfs.c \
1999-02-06 23:19:50 +03:00
util-alone.c \
1998-09-26 00:10:06 +04:00
vfs.c
VFSHDRS = \
container.h \
extfs.h \
fish.h \
ftpfs.h \
mcfs.h \
names.h \
1999-07-04 14:21:43 +04:00
smbfs.h \
1998-09-26 00:10:06 +04:00
tar.h \
tcputil.h \
utilvfs.h \
vfs.h \
1999-02-06 23:19:50 +03:00
util-alone.h \
xdirentry.h
1998-02-27 07:54:42 +03:00
VFSOBJS = $(NONETFILES) @NETFILES@
Makefile: $(srcdir)/Make-mc.in $(top_builddir)/config.status
cd $(top_builddir) && \
CONFIG_FILES=vfs/Makefile:vfs/Make-mc.in \
CONFIG_HEADERS= $(SHELL) ./config.status
1998-09-26 00:10:06 +04:00
1998-02-27 07:54:42 +03:00
#
# Distribution variables
#
DISTVFS = Make-mc.in ChangeLog callback.h README README.fish \
$(VFSSRCS) $(VFSHDRS)
1998-02-27 07:54:42 +03:00
all: all-recursive all-local
all-recursive:
cd extfs && $(MAKE) all
1998-02-27 07:54:42 +03:00
all-local: @LIBVFS@ @mcserv@
1998-02-27 07:54:42 +03:00
.c.o:
$(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $<
check:
@echo no tests are supplied.
SRC_LINKS = mad.c mad.h
1998-02-27 07:54:42 +03:00
$(SRC_LINKS):
for i in $(SRC_LINKS); do \
$(LN_S) $(mcsrcdir)/$$i . || exit 1; \
done
1998-02-27 07:54:42 +03:00
mcserv: mcserv.o tcputil.o mad.o
1998-02-27 07:54:42 +03:00
$(CC) $(LDFLAGS) -o mcserv mcserv.o tcputil.o mad.o $(LIBS)
@USE_SAMBA_FS_TRUE@libvfs-mc.a: $(VFSOBJS) samba/libsamba.a
@USE_SAMBA_FS_FALSE@libvfs-mc.a: $(VFSOBJS)
rm -f $@
@USE_SAMBA_FS_TRUE@ cp -f samba/libsamba.a libtmp.a
@USE_SAMBA_FS_TRUE@ $(AR) r libtmp.a $(VFSOBJS)
@USE_SAMBA_FS_TRUE@ mv libtmp.a $@
@USE_SAMBA_FS_FALSE@ $(AR) cr $@ $(VFSOBJS)
$(RANLIB) $@
2001-05-15 00:38:30 +04:00
#
# Commands to build standalone version (.so)
#
VFSSOOBJS = tcputil.so ftpfs.so mcfs.so utilvfs.so local.so vfs.so \
tar.so names.so container.so extfs.so util-alone.so util.sor \
utilunix.sor sfs.so fish.so direntry.so cpio.so
2001-05-15 00:38:30 +04:00
%.sor: ../src/%.c
$(CC) -c -fpic $(CPPFLAGS) $(DEFS) $(CFLAGS) -DVFS_STANDALONE $< -o $@
%.so: %.c
$(CC) -c -fpic $(CPPFLAGS) $(DEFS) $(CFLAGS) -DVFS_STANDALONE $< -o $@
libvfs.so: $(VFSSOOBJS)
gcc $(VFSSOOBJS) -shared -o libvfs.so
samba/libsamba.a:
cd samba && $(MAKE) libsamba.a
1998-02-27 07:54:42 +03:00
TAGS: $(VFSSRCS)
etags $(VFSSRCS)
mostlyclean:
(cd extfs && $(MAKE) mostlyclean)
if test -f samba/Makefile; then \
(cd samba && $(MAKE) mostlyclean); \
else :; fi
rm -f *.o core a.out $(VFSSOOBJS)
1998-02-27 07:54:42 +03:00
clean: mostlyclean
(cd extfs && $(MAKE) clean)
if test -f samba/Makefile; then \
(cd samba && $(MAKE) clean); \
else :; fi
rm -f mcserv *.a *.so
1998-02-27 07:54:42 +03:00
distclean: clean
(cd extfs && $(MAKE) distclean)
if test -f samba/Makefile; then \
(cd samba && $(MAKE) distclean); \
else :; fi
rm -f $(SRC_LINKS)
rm -f TAGS
rm -f *~
rm -f Makefile
1998-02-27 07:54:42 +03:00
install: all-local install-local install-recursive
install-local:
@MCSERV_INSTALL_TRUE@ $(mkinstalldirs) $(DESTDIR)$(bindir)
@MCSERV_INSTALL_TRUE@ $(INSTALL_PROGRAM) mcserv \
@MCSERV_INSTALL_TRUE@ $(DESTDIR)$(bindir)/$(binprefix)mcserv
1998-02-27 07:54:42 +03:00
install-recursive:
cd extfs && $(MAKE) install
1998-02-27 07:54:42 +03:00
uninstall:
(cd extfs && $(MAKE) uninstall)
rm -f $(DESTDIR)$(bindir)/$(binprefix)mcserv
1998-02-27 07:54:42 +03:00
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
distdir:
for I in $(DISTVFS); \
do cp -p $(srcdir)/$$I $(distdir) || exit 1; \
done
$(mkinstalldirs) $(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/tests
for I in $(SAMBA_DIST); do \
cp -p $(srcdir)/samba/$$I $(distdir)/samba/$$I \
|| exit 1; done
1999-06-26 03:11:47 +04:00
depend:
1998-02-27 07:54:42 +03:00