From cbddf9e2efd856a25c6405f6893ad3a9cda1b181 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 22 May 2013 14:22:36 +1000 Subject: build: Remove autoconf build system from examples/VFS Reviewed-by: Jelmer Vernooij Reviewed-by: David Disseldorp --- examples/VFS/Makefile.in | 72 ------------------------------------------------ 1 file changed, 72 deletions(-) delete mode 100644 examples/VFS/Makefile.in (limited to 'examples/VFS/Makefile.in') diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in deleted file mode 100644 index ba41923192..0000000000 --- a/examples/VFS/Makefile.in +++ /dev/null @@ -1,72 +0,0 @@ -CC = @CC@ -CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LDSHFLAGS = @LDSHFLAGS@ -INSTALLCMD = @INSTALL@ -SAMBA_SOURCE = @SAMBA_SOURCE@ -SHLIBEXT = @SHLIBEXT@ -OBJEXT = @OBJEXT@ -FLAGS = $(CFLAGS) $(CPPFLAGS) -fPIC \ - -Iinclude -I$(SAMBA_SOURCE)/include \ - -I$(SAMBA_SOURCE)/include/autoconf \ - -I$(SAMBA_SOURCE)/autoconf \ - -I$(SAMBA_SOURCE)/../popt \ - -I$(SAMBA_SOURCE)/../lib/replace \ - -I$(SAMBA_SOURCE)/../lib/talloc \ - -I$(SAMBA_SOURCE)/../lib/tevent \ - -I$(SAMBA_SOURCE)/../lib/tdb/include \ - -I$(SAMBA_SOURCE)/librpc \ - -I$(SAMBA_SOURCE)/../librpc \ - -I$(SAMBA_SOURCE)/../ \ - -I$(SAMBA_SOURCE) -I. - - -prefix = @prefix@ -libdir = @libdir@ - -VFS_LIBDIR = $(libdir)/vfs - -# Note, if make fails, it might be because your version of make does not -# support what we need. Try installing GNU make and rerun make. -# -# Note also, that if your module requires more than one object file to be -# linked in you will have to modify Makefile.in to accommodate your needs and -# then rerun configure before you can build. - -# Change these targets to the names of your modules if building out of tree -MODULES = skel_opaque.@SHLIBEXT@ shadow_copy_test.@SHLIBEXT@ \ - skel_transparent.@SHLIBEXT@ - -all: $(MODULES) - -# Pattern rules - -.SUFFIXES: .@SHLIBEXT@ - -# You might need to create an explicit rule for your shared object if your -# shared object is built from multiple .c files. - -.c.@SHLIBEXT@: - @echo "Compiling $<" - @$(CC) $(FLAGS) -c $< -D$*_init=samba_init_module - @echo "Linking $@" - @$(CC) $(LDSHFLAGS) $(LDFLAGS) $*.@OBJEXT@ -o $*.@SHLIBEXT@ - -# You might need to uncomment this if you have other .c files to compile -#.c.@OBJEXT@: -# @echo "Compiling $<" -# @$(CC) $(FLAGS) -c $< -D$*_init=samba_init_module - -install: default - $(INSTALLCMD) -d $(VFS_LIBDIR) - $(INSTALLCMD) -m 755 *.$(SHLIBEXT) $(VFS_LIBDIR) - -# Misc targets -clean: - rm -rf .libs - rm -f core *~ *% *.bak *.o *.$(SHLIBEXT) - -distclean: clean - rm -f config.status config.cache Makefile - -- cgit