summaryrefslogtreecommitdiff
path: root/examples/VFS/block/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'examples/VFS/block/Makefile.in')
-rw-r--r--examples/VFS/block/Makefile.in28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/VFS/block/Makefile.in b/examples/VFS/block/Makefile.in
deleted file mode 100644
index 3deb17c596..0000000000
--- a/examples/VFS/block/Makefile.in
+++ /dev/null
@@ -1,28 +0,0 @@
-CC = @CC@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-LDFLAGS = @LDFLAGS@
-LDSHFLAGS = -shared
-srcdir = @builddir@
-FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
-
-VFS_OBJS = block.so
-
-# Default target
-
-default: $(VFS_OBJS)
-
-# Pattern rules
-
-%.so: %.o
- $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $<
-
-%.o: %.c
- $(CC) $(FLAGS) -c $<
-
-# Misc targets
-
-clean:
- rm -rf .libs
- rm -f core *~ *% *.bak \
- $(VFS_OBJ) $(VFS_OBJS)