1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

move everything to flat VFS/ directory

This commit is contained in:
Simo Sorce 0001-01-01 00:00:00 +00:00
parent d1e1fc3e4b
commit d383c309d4
4 changed files with 1 additions and 29 deletions

View File

@ -6,7 +6,7 @@ LDSHFLAGS = -shared
srcdir = @builddir@
FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
VFS_OBJS = audit.so recycle.so
VFS_OBJS = audit.so recycle.so netatalk.so
# Default target

View File

@ -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 = netatalk.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)