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.in38
1 files changed, 28 insertions, 10 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in
index 46e1a90263..3126dfa3b8 100644
--- a/examples/VFS/Makefile.in
+++ b/examples/VFS/Makefile.in
@@ -1,24 +1,42 @@
+MAKEFILE = Makefile.vfs
+
+include $(MAKEFILE)
+
CC = @CC@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-LDFLAGS = @LDFLAGS@
+LIBTOOL = libtool
+CFLAGS = @CFLAGS@ $(VFS_CFLAGS)
+CPPFLAGS = @CPPFLAGS@ $(VFS_CPPFLAGS)
+LDFLAGS = @LDFLAGS@ $(VFS_LDFLAGS)
LDSHFLAGS = -shared
srcdir = @builddir@
FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
-# Auto target
-default: $(patsubst %.c,%.so,$(wildcard *.c))
+# Default target
+
+default: $(VFS_OBJS)
+
+# if file doesn't exist try to create one;
+# it is possible that some variables will be
+# defined correctly
+Makefile.vfs:
+ @echo -ne "VFS_OBJS\t= " > $(MAKEFILE); \
+ for i in *.c; do \
+ echo -n $$i" " | sed -e 's/\(.*\)\.c\(.*\)/\1\.so\2/g' >> $(MAKEFILE); \
+ done; \
+ echo -ne "\nVFS_CFLAGS\t= \nVFS_CPPFLAGS\t= \nVFS_LDFLAGS\t= \n" >> $(MAKEFILE)
+ make
# Pattern rules
-%.so: %.o
- $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $<
+%.so: %.lo
+ $(LIBTOOL) $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $<
-%.o: %.c
- $(CC) $(FLAGS) -c $<
+%.lo: %.c
+ $(LIBTOOL) $(CC) $(FLAGS) -c $<
# Misc targets
clean:
rm -rf .libs
- rm -f core *~ *% *.bak *.o *.so
+ rm -f core *~ *% *.bak \
+ $(VFS_OBJS) $(VFS_OBJS:.so=.o) $(VFS_OBJS:.so=.lo)