diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-28 00:49:49 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-28 00:49:49 +0000 |
commit | 1c34cd359a9977ede758079d1989a49f00f39a67 (patch) | |
tree | 4258bd60ef0a06f3bfac675d7415cdf645ce3269 /examples/VFS/Makefile.in | |
parent | ed12657e772d78e65dc34236de3d866067b5f1f6 (diff) | |
download | samba-1c34cd359a9977ede758079d1989a49f00f39a67.tar.gz samba-1c34cd359a9977ede758079d1989a49f00f39a67.tar.bz2 samba-1c34cd359a9977ede758079d1989a49f00f39a67.zip |
Update for the new modules system. Also, use Makefile rather then Makefile.in
because we don't generate Makefile from configure anymore.
(This used to be commit 29ba1e163f85aeaa3cd48a13e4f0a039fa80e7b0)
Diffstat (limited to 'examples/VFS/Makefile.in')
-rw-r--r-- | examples/VFS/Makefile.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile.in deleted file mode 100644 index 30019caccd..0000000000 --- a/examples/VFS/Makefile.in +++ /dev/null @@ -1,24 +0,0 @@ -CC = @CC@ -CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @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 |