source: trunk/server/examples/auth/Makefile

Last change on this file was 414, checked in by Herwig Bauernfeind, 16 years ago

Samba 3.5.0: Initial import

File size: 626 bytes
Line 
1# Makefile for samba-pdb examples
2# Variables
3
4CC = gcc
5LIBTOOL = libtool
6
7SAMBA_SRC = ../../source
8SAMBA_INCL = ../../source/include
9UBIQX_SRC = ../../source/ubiqx
10SMBWR_SRC = ../../source/smbwrapper
11CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g
12AUTH_OBJS = auth_skel.la
13
14# Default target
15
16default: $(AUTH_OBJS)
17
18# Pattern rules
19
20%.la: %.lo
21 $(LIBTOOL) --mode=link $(CC) -module -o $@ $< $(LDFLAGS)
22
23%.lo: %.c
24 $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
25
26# Misc targets
27
28clean:
29 rm -rf .libs
30 rm -f core *~ *% *.bak \
31 $(AUTH_OBJS) $(AUTH_OBJS:.la=.o) $(AUTH_OBJS:.la=.lo)
Note: See TracBrowser for help on using the repository browser.