s4-netlogon: implement dcesrv_netr_DsRAddressToSitenamesExW
[Samba/aatanasov.git] / examples / auth / Makefile
blobd6dbc28f40ebd6e47134b84e3b3d5cce13f3fd6c
1 # Makefile for samba-pdb examples
2 # Variables
4 CC = gcc
5 LIBTOOL = libtool
7 SAMBA_SRC = ../../source
8 SAMBA_INCL = ../../source/include
9 UBIQX_SRC = ../../source/ubiqx
10 SMBWR_SRC = ../../source/smbwrapper
11 CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g
12 AUTH_OBJS = auth_skel.la
14 # Default target
16 default: $(AUTH_OBJS)
18 # Pattern rules
20 %.la: %.lo
21 $(LIBTOOL) --mode=link $(CC) -module -o $@ $< $(LDFLAGS)
23 %.lo: %.c
24 $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
26 # Misc targets
28 clean:
29 rm -rf .libs
30 rm -f core *~ *% *.bak \
31 $(AUTH_OBJS) $(AUTH_OBJS:.la=.o) $(AUTH_OBJS:.la=.lo)