diff options
author | Jeremy Allison <jra@samba.org> | 2001-05-16 02:12:37 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-05-16 02:12:37 +0000 |
commit | 0c9a2cee9f31661750c31176bda204d9914e5cfc (patch) | |
tree | 08c9be48496921d7143dc21a3f03a1c5db63e987 /examples/VFS/block/Makefile | |
parent | 109851ae5c40fdbaa426d40c81bf75cd45d7d858 (diff) | |
download | samba-0c9a2cee9f31661750c31176bda204d9914e5cfc.tar.gz samba-0c9a2cee9f31661750c31176bda204d9914e5cfc.tar.bz2 samba-0c9a2cee9f31661750c31176bda204d9914e5cfc.zip |
Added example vfs block example from Ronald Kuetemeier <ronald@kuetemeier.com>.
Jeremy.
(This used to be commit 0609cd3162173575d22fbd12c48e777a5b15553e)
Diffstat (limited to 'examples/VFS/block/Makefile')
-rw-r--r-- | examples/VFS/block/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/examples/VFS/block/Makefile b/examples/VFS/block/Makefile new file mode 100644 index 0000000000..dcc7c07793 --- /dev/null +++ b/examples/VFS/block/Makefile @@ -0,0 +1,37 @@ +# +# Makefile for samba-vfs examples +# +# + +# Variables + +CC = gcc +LIBTOOL = libtool + +SAMBA_SRC = /usr/local/src/samba/samba-2.2.0-ron/source +SAMBA_INCL = ${SAMBA_SRC}/include +UBIQX_SRC = ${SAMBA_SRC}/ubiqx +SMBWR_SRC = ${SAMBA_SRC}/smbwrapper +CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g -D_LARGEFILE63_SOURCE -D_GNU_SOURCE -fno-builtin + + +VFS_OBJS = block.so + +# Default target + +default: $(VFS_OBJS) + +# Pattern rules + +%.so: %.lo + $(LIBTOOL) $(CC) -shared -o $@ $< $(LDFLAGS) + +%.lo: %.c + $(LIBTOOL) $(CC) $(CPPFLAGS) $(CFLAGS) -c $< + +# Misc targets + +clean: + rm -rf .libs + rm -f core *~ *% *.bak \ + $(VFS_OBJS) $(VFS_OBJS:.so=.o) $(VFS_OBJS:.so=.lo) |