~vcs-imports/samba/main

« back to all changes in this revision

Viewing changes to testsuite/smbd/Makefile.sec_ctx

  • Committer: jerry
  • Date: 2006-07-14 21:48:39 UTC
  • Revision ID: vcs-imports@canonical.com-20060714214839-586d8c489a8fcead
gutting trunk to move to svn:externals

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Makefile for sec_ctx tests
3
 
#
4
 
 
5
 
include ../../source/Makefile
6
 
 
7
 
# Objects common to all tests
8
 
 
9
 
SEC_CTX_OBJ1 = $(RPC_CLIENT_OBJ) $(LIB_OBJ) $(RPC_PARSE_OBJ) $(PARAM_OBJ) \
10
 
        $(LIBSMB_OBJ) $(PASSDB_OBJ) $(UBIQX_OBJ) smbd/password.o smbd/uid.o \
11
 
        smbd/chgpasswd.o smbd/sec_ctx.o
12
 
 
13
 
SEC_CTX_OBJS = $(SEC_CTX_OBJ1:%=$(srcdir)/%) sec_ctx_utils.o
14
 
 
15
 
# Targets for tests
16
 
 
17
 
SEC_CTX_NONROOT_OBJS = $(SEC_CTX_OBJS) sec_ctx_nonroot.o
18
 
 
19
 
sec_ctx_nonroot: $(SEC_CTX_NONROOT_OBJS)
20
 
        @echo Linking $@
21
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_NONROOT_OBJS) $(LIBS)
22
 
 
23
 
SEC_CTX_STACK_OBJS = $(SEC_CTX_OBJS) sec_ctx_stack.o
24
 
 
25
 
sec_ctx_stack: $(SEC_CTX_STACK_OBJS)
26
 
        @echo Linking $@
27
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_STACK_OBJS) $(LIBS)
28
 
 
29
 
SEC_CTX_FLOW_OBJS = $(SEC_CTX_OBJS) sec_ctx_flow.o
30
 
 
31
 
sec_ctx_flow: $(SEC_CTX_FLOW_OBJS)
32
 
        @echo Linking $@
33
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_FLOW_OBJS) $(LIBS)
34
 
 
35
 
SEC_CTX_TORTURE_OBJS = $(SEC_CTX_OBJS) sec_ctx_torture.o
36
 
 
37
 
sec_ctx_torture: $(SEC_CTX_TORTURE_OBJS)
38
 
        @echo Linking $@
39
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_TORTURE_OBJS) $(LIBS)
40
 
 
41
 
SEC_CTX_CURRENT_USER_OBJS = $(SEC_CTX_OBJS) sec_ctx_current_user.o
42
 
 
43
 
sec_ctx_current_user: $(SEC_CTX_CURRENT_USER_OBJS)
44
 
        @echo Linking $@
45
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_CURRENT_USER_OBJS) $(LIBS)
46
 
 
47
 
SEC_CTX_GROUPS_OBJS = $(SEC_CTX_OBJS) sec_ctx_groups.o
48
 
 
49
 
sec_ctx_groups: $(SEC_CTX_GROUPS_OBJS)
50
 
        @echo Linking $@
51
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_GROUPS_OBJS) $(LIBS)
52
 
 
53
 
SEC_CTX_ROOT_OBJS = $(SEC_CTX_OBJS) sec_ctx_root.o
54
 
 
55
 
sec_ctx_root: $(SEC_CTX_ROOT_OBJS)
56
 
        @echo Linking $@
57
 
        @$(CC) $(FLAGS) -o $@ $(SEC_CTX_ROOT_OBJS) $(LIBS)