summaryrefslogtreecommitdiffstats
path: root/examples/VFS/Makefile
blob: c4c9479c7d39390207e47c46e806df07441c84de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Makefile for samba-vfs examples
#
# $Id: Makefile,v 1.2 2000/02/04 05:08:16 tpot Exp $
#

# Variables

CC = gcc
LIBTOOL = libtool

SAMBA_SRC = ../../source/include
CFLAGS = -I$(SAMBA_SRC)
VFS_OBJS = audit.so skel.so

# Default target

default: $(VFS_OBJS)

# Pattern rules

%.so: %.lo
	$(LIBTOOL) $(CC) -shared -o $@ $< $(LDFLAGS)

%.lo: %.c
	$(LIBTOOL) $(CC) $(CPPFLAGS) $(CFLAGS) -c $<

# Misc targets

clean:
	rm -rf .libs
	rm -f core $(VFS_OBJS) $(VFS_OBJS:.so=.lo) *~ *% *.bak