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