summaryrefslogtreecommitdiff
path: root/examples/VFS/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'examples/VFS/Makefile.in')
-rw-r--r--examples/VFS/Makefile.in31
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in
new file mode 100644
index 00000000000..a39ab511dd1
--- /dev/null
+++ b/examples/VFS/Makefile.in
@@ -0,0 +1,31 @@
+##########################################################################
+# Makefile.in for Samba VFS modules
+###########################################################################
+
+CC=@CC@
+LIBTOOL=@LIBTOOL@
+CFLAGS=@CFLAGS@
+LDFLAGS=@LDFLAGS@
+
+VFS_OBJS=audit.so skel.so block/block.so recycle/recycle.so
+
+SHELL=/bin/sh
+
+default: $(VFS_OBJS)
+
+# Pattern rules
+
+%.so: %.lo
+ @echo Linking $<
+ @$(LIBTOOL) --mode=link $(CC) -o $@ $< $(LDFLAGS)
+
+%.lo: %.c
+ @echo Compiling $<
+ @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
+
+# Misc targets
+
+clean:
+ rm -rf .libs */.libs
+ rm -f core *~ *% *.bak *.o */*.o *.lo $(VFS_OBJS)
+