Makefile.am revision 302408
1254885Sdumbbellif USE_NATIVE_INCLUDES
2254885SdumbbellINCLUDES = -I$(top_builddir) -I$(top_srcdir)
3254885Sdumbbellelse
4254885SdumbbellINCLUDES = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/sys
5254885Sdumbbellendif
6254885Sdumbbell
7254885Sdumbbelllib_LTLIBRARIES = libbsm.la
8254885Sdumbbell
9254885Sdumbbelllibbsm_la_SOURCES =	\
10254885Sdumbbell	bsm_audit.c	\
11254885Sdumbbell	bsm_class.c	\
12254885Sdumbbell	bsm_control.c	\
13254885Sdumbbell	bsm_domain.c	\
14254885Sdumbbell	bsm_errno.c	\
15254885Sdumbbell	bsm_event.c	\
16254885Sdumbbell	bsm_fcntl.c	\
17254885Sdumbbell	bsm_flags.c	\
18254885Sdumbbell	bsm_io.c	\
19254885Sdumbbell	bsm_mask.c	\
20254885Sdumbbell	bsm_socket_type.c	\
21254885Sdumbbell	bsm_token.c	\
22254885Sdumbbell	bsm_user.c
23254885Sdumbbell
24254885Sdumbbellif HAVE_AUDIT_SYSCALLS
25254885Sdumbbelllibbsm_la_SOURCES +=	\
26254885Sdumbbell	bsm_notify.c	\
27254885Sdumbbell	bsm_wrappers.c
28254885Sdumbbellendif
29254885Sdumbbell
30254885Sdumbbellman3_MANS =		\
31254885Sdumbbell	au_class.3	\
32254885Sdumbbell	au_control.3	\
33254885Sdumbbell	au_domain.3	\
34254885Sdumbbell	au_errno.3	\
35254885Sdumbbell	au_event.3	\
36254885Sdumbbell	au_fcntl_cmd.3	\
37254885Sdumbbell	au_free_token.3	\
38254885Sdumbbell	au_io.3		\
39254885Sdumbbell	au_mask.3	\
40254885Sdumbbell	au_notify.3	\
41254885Sdumbbell	au_open.3	\
42254885Sdumbbell	au_socket_type.3	\
43254885Sdumbbell	au_token.3	\
44254885Sdumbbell	au_user.3	\
45254885Sdumbbell	libbsm.3
46254885Sdumbbell
47254885Sdumbbellinstall-exec-hook:
48254885Sdumbbell	cd $(DESTDIR)$(mandir) && \
49254885Sdumbbell	  $(LN_S) -f au_class.3 getauclassent.3 && \
50254885Sdumbbell	  $(LN_S) -f au_class.3 getauclassent_r.3 && \
51254885Sdumbbell	  $(LN_S) -f au_class.3 getauclassnam.3 && \
52254885Sdumbbell	  $(LN_S) -f au_class.3 getauclassnam_r.3 && \
53254885Sdumbbell	  $(LN_S) -f au_class.3 setauclass.3 && \
54254885Sdumbbell	  $(LN_S) -f au_class.3 endauclass.3 && \
55254885Sdumbbell	  $(LN_S) -f au_control.3 setac.3 && \
56254885Sdumbbell	  $(LN_S) -f au_control.3 endac.3 && \
57254885Sdumbbell	  $(LN_S) -f au_control.3 getacdir.3 && \
58254885Sdumbbell	  $(LN_S) -f au_control.3 getacdist.3 && \
59254885Sdumbbell	  $(LN_S) -f au_control.3 getacexpire.3 && \
60254885Sdumbbell	  $(LN_S) -f au_control.3 getacfilesz.3 && \
61254885Sdumbbell	  $(LN_S) -f au_control.3 getacflg.3 && \
62254885Sdumbbell	  $(LN_S) -f au_control.3 getachost.3 && \
63254885Sdumbbell	  $(LN_S) -f au_control.3 getacmin.3 && \
64254885Sdumbbell	  $(LN_S) -f au_control.3 getacna.3 && \
65254885Sdumbbell	  $(LN_S) -f au_control.3 getacpol.3 && \
66254885Sdumbbell	  $(LN_S) -f au_control.3 au_poltostr.3 && \
67254885Sdumbbell	  $(LN_S) -f au_control.3 ac_strtopol.3 && \
68254885Sdumbbell	  $(LN_S) -f au_domain.3 au_bsm_to_domain.3 && \
69254885Sdumbbell	  $(LN_S) -f au_domain.3 au_domain_to_bsm.3 && \
70254885Sdumbbell	  $(LN_S) -f au_errno.3 au_bsm_to_errno.3 && \
71254885Sdumbbell	  $(LN_S) -f au_errno.3 au_errno_to_bsm.3 && \
72254885Sdumbbell	  $(LN_S) -f au_errno.3 au_strerror.3 && \
73254885Sdumbbell	  $(LN_S) -f au_event.3 setauevent.3 && \
74254885Sdumbbell	  $(LN_S) -f au_event.3 endauevent.3 && \
75254885Sdumbbell	  $(LN_S) -f au_event.3 getauevent.3 && \
76254885Sdumbbell	  $(LN_S) -f au_event.3 getauevent_r.3 && \
77254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnam.3 && \
78254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnam_r.3 && \
79254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnum.3 && \
80254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnum_r.3 && \
81254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnonam.3 && \
82254885Sdumbbell	  $(LN_S) -f au_event.3 getauevnonam_r.3 && \
83254885Sdumbbell	  $(LN_S) -f au_fcntl.3 au_bsm_to_fcntl_cmd.3 && \
84254885Sdumbbell	  $(LN_S) -f au_fcntl.3 au_fcntl_cmd_to_bsm.3 && \
85254885Sdumbbell	  $(LN_S) -f au_io.3 au_fetch_tok.3 && \
86254885Sdumbbell	  $(LN_S) -f au_io.3 au_print_tok.3 && \
87254885Sdumbbell	  $(LN_S) -f au_io.3 au_print_flags_tok.3 && \
88254885Sdumbbell	  $(LN_S) -f au_io.3 au_read_rec.3 && \
89254885Sdumbbell	  $(LN_S) -f au_mask.3 au_preselect.3 && \
90254885Sdumbbell	  $(LN_S) -f au_mask.3 getauditflagsbin.3 && \
91254885Sdumbbell	  $(LN_S) -f au_mask.3 getauditflagschar.3 && \
92254885Sdumbbell	  $(LN_S) -f au_notify.3 au_get_state.3 && \
93254885Sdumbbell	  $(LN_S) -f au_notify.3 au_notify_initialize.3 && \
94254885Sdumbbell	  $(LN_S) -f au_notify.3 au_notify_terminate.3 && \
95254885Sdumbbell	  $(LN_S) -f au_open.3 au_open.3 && \
96254885Sdumbbell	  $(LN_S) -f au_open.3 au_write.3 && \
97254885Sdumbbell	  $(LN_S) -f au_open.3 au_close.3 && \
98254885Sdumbbell	  $(LN_S) -f au_open.3 au_close_buffer.3 && \
99254885Sdumbbell	  $(LN_S) -f au_open.3 au_close_token.3 && \
100254885Sdumbbell	  $(LN_S) -f au_socket_type.3 au_bsm_to_socket_type.3 && \
101254885Sdumbbell	  $(LN_S) -f au_socket_type.3 au_socket_type_to_bsm.3 && \
102254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_arg32.3 && \
103254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_arg64.3 && \
104254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_arg.3 && \
105254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_attr64.3 && \
106254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_data.3 && \
107254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_exit.3 && \
108254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_groups.3 && \
109254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_newgroups.3 && \
110254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_in_addr.3 && \
111254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_in_addr_ex.3 && \
112254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_ip.3 && \
113254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_ipc.3 && \
114254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_ipc_perm.3 && \
115254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_iport.3 && \
116254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_opaque.3 && \
117254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_file.3 && \
118254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_text.3 && \
119254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_path.3 && \
120254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process32.3 && \
121254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process64.3 && \
122254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process.3 && \
123254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process32_ex.3 && \
124254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process64_ex.3 && \
125254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_process_ex.3 && \
126254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_return32.3 && \
127254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_return64.3 && \
128254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_return.3 && \
129254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_seq.3 && \
130254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_sock_inet32.3 && \
131254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_sock_inet128.3 && \
132254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_sock_inet.3 && \
133254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_socket_ex.3 && \
134254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject32.3 && \
135254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject64.3 && \
136254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject.3 && \
137254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject32_ex.3 && \
138254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject64_ex.3 && \
139254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_subject_ex.3 && \
140254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_me.3 && \
141254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_exec_args.3 && \
142254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_exec_env.3 && \
143254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_header.3 && \
144254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_header32.3 && \
145254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_header64.3 && \
146254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_header_ex.3 && \
147254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_header32_ex.3 && \
148254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_trailer.3 && \
149254885Sdumbbell	  $(LN_S) -f au_token.3 au_to_zonename.3 && \
150254885Sdumbbell	  $(LN_S) -f au_user.3 setauuser.3 && \
151254885Sdumbbell	  $(LN_S) -f au_user.3 endauuser.3 && \
152254885Sdumbbell	  $(LN_S) -f au_user.3 getauuserent.3 && \
153254885Sdumbbell	  $(LN_S) -f au_user.3 getauuserent_r.3 && \
154254885Sdumbbell	  $(LN_S) -f au_user.3 getauusernam.3 && \
155254885Sdumbbell	  $(LN_S) -f au_user.3 getauusernam_r.3 && \
156254885Sdumbbell	  $(LN_S) -f au_user.3 au_user_mask.3 && \
157254885Sdumbbell	  $(LN_S) -f au_user.3 getfauditflags.3
158254885Sdumbbell