summaryrefslogtreecommitdiff
path: root/src/polkitagent/Makefile.am
blob: c98f29def6e6c881b66d0d3251fa02321ba16a31 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
NULL =

AM_CFLAGS = -std=gnu99 $(WARN_CFLAGS)
AM_CPPFLAGS =                                                   \
        -I$(top_builddir)/src                                   \
        -I$(top_srcdir)/src                                     \
        -I$(top_builddir)/src/polkit                            \
        -I$(top_srcdir)/src/polkit                              \
        -DPACKAGE_PREFIX=\""$(prefix)"\"                    	\
        -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\"               \
        -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\"               \
        -DPACKAGE_DATA_DIR=\""$(datadir)"\"                     \
        -DPACKAGE_BIN_DIR=\""$(bindir)"\"                       \
        -DPACKAGE_LOCALSTATE_DIR=\""$(localstatedir)"\"         \
        -DPACKAGE_LOCALE_DIR=\""$(localedir)"\"                 \
        -DPACKAGE_LIB_DIR=\""$(libdir)"\"                       \
        -D_POSIX_PTHREAD_SEMANTICS                              \
        -D_REENTRANT                                            \
        $(NULL)

BUILT_SOURCES = 						\
	marshal.stamp						\
	polkitagentenumtypes.c		polkitagentenumtypes.h	\
	$(NULL)

enum_headers = polkitagentlistener.h

polkitagentenumtypes.h: $(enum_headers) polkitagentenumtypes.h.template
	( top_builddir=`cd $(top_builddir) && pwd`; \
	 cd $(srcdir) && glib-mkenums --template polkitagentenumtypes.h.template $(enum_headers)) > \
	   polkitagentenumtypes.h.tmp && mv polkitagentenumtypes.h.tmp polkitagentenumtypes.h

polkitagentenumtypes.c: $(enum_headers) polkitagentenumtypes.c.template
	( top_builddir=`cd $(top_builddir) && pwd`; \
	 cd $(srcdir) && glib-mkenums --template polkitagentenumtypes.c.template $(enum_headers)) > \
	   polkitagentenumtypes.c.tmp && mv polkitagentenumtypes.c.tmp polkitagentenumtypes.c

marshal.stamp : Makefile.am $(srcdir)/polkitagentmarshal.list
	glib-genmarshal --prefix=_polkit_agent_marshal $(srcdir)/polkitagentmarshal.list --header > polkitagentmarshal.h.tmp && mv polkitagentmarshal.h.tmp polkitagentmarshal.h
	(echo "#include \"polkitagentmarshal.h\""; glib-genmarshal --prefix=_polkit_agent_marshal $(srcdir)/polkitagentmarshal.list --body) > polkitagentmarshal.c.tmp && mv polkitagentmarshal.c.tmp polkitagentmarshal.c
	touch marshal.stamp

marshal_built_sources = polkitagentmarshal.h polkitagentmarshal.c

lib_LTLIBRARIES=libpolkit-agent-1.la

libpolkit_agent_1includedir=$(includedir)/polkit-1/polkitagent

libpolkit_agent_1include_HEADERS =                        				\
	polkitagent.h									\
	polkitagentenumtypes.h								\
	polkitagenttypes.h								\
	polkitagentsession.h								\
	polkitagentlistener.h								\
	polkitagenttextlistener.h							\
        $(NULL)

libpolkit_agent_1_la_SOURCES =                                   			\
	$(BUILT_SOURCES)								\
	$(marshal_built_sources)							\
        polkitagent.h									\
	polkitagenttypes.h								\
	polkitagentsession.h			polkitagentsession.c			\
	polkitagentlistener.h			polkitagentlistener.c			\
	polkitagenttextlistener.h		polkitagenttextlistener.c		\
        $(NULL)

libpolkit_agent_1_la_CFLAGS =                                        	\
        -D_POLKIT_COMPILATION                                  		\
	-D_POLKIT_AGENT_COMPILATION					\
        $(GLIB_CFLAGS)							\
        $(NULL)

libpolkit_agent_1_la_LIBADD =                               		\
        $(GLIB_LIBS)							\
	$(top_builddir)/src/polkit/libpolkit-gobject-1.la		\
	$(EXPAT_LIBS)							\
        $(NULL)

libpolkit_agent_1_la_LDFLAGS = -export-symbols-regex '(^polkit_.*)'

libprivdir = $(prefix)/lib/polkit-1
libpriv_PROGRAMS = polkit-agent-helper-1

polkit_agent_helper_1_SOURCES = 					\
	polkitagenthelperprivate.c polkitagenthelperprivate.h		\
	$(NULL)

if POLKIT_AUTHFW_PAM
polkit_agent_helper_1_SOURCES += polkitagenthelper-pam.c
endif
if POLKIT_AUTHFW_SHADOW
polkit_agent_helper_1_SOURCES += polkitagenthelper-shadow.c
endif
if POLKIT_AUTHFW_BSDAUTH
polkit_agent_helper_1_SOURCES += polkitagenthelper-bsdauth.c
endif

polkit_agent_helper_1_CFLAGS  = 					\
        -D_POLKIT_COMPILATION                                  		\
	$(SUID_CFLAGS)							\
	$(GLIB_CFLAGS)							\
	$(NULL)

polkit_agent_helper_1_LDADD = 						\
	$(AUTH_LIBS)							\
	$(GLIB_LIBS)							\
	$(top_builddir)/src/polkit/libpolkit-gobject-1.la		\
	$(NULL)

polkit_agent_helper_1_LDFLAGS = 					\
	$(SUID_LDFLAGS)							\
	$(AM_LDFLAGS)							\
	$(NULL)

if HAVE_INTROSPECTION

girdir = $(INTROSPECTION_GIRDIR)
gir_DATA = PolkitAgent-1.0.gir

PolkitAgent-1.0.gir: libpolkit-agent-1.la

typelibsdir = $(INTROSPECTION_TYPELIBDIR)
typelibs_DATA = PolkitAgent-1.0.typelib

INTROSPECTION_COMPILER_ARGS = --includedir=../../src/polkit
INTROSPECTION_GIRS = PolkitAgent-1.0.gir
PolkitAgent_1_0_gir_INCLUDES = Gio-2.0
PolkitAgent_1_0_gir_SCANNERFLAGS = \
	--include-uninstalled=../../src/polkit/Polkit-1.0.gir	\
	--c-include='polkitagent/polkitagent.h'
PolkitAgent_1_0_gir_CFLAGS = \
        $(libpolkit_agent_1_la_CFLAGS)		\
        -D_POLKIT_COMPILATION			\
        -D_POLKIT_AGENT_COMPILATION		\
        -I.. -I$(top_srcdir)/src
PolkitAgent_1_0_gir_LIBS = libpolkit-agent-1.la
PolkitAgent_1_0_gir_FILES = $(libpolkit_agent_1_la_SOURCES)
PolkitAgent_1_0_gir_EXPORT_PACKAGES = polkit-agent-1

include $(INTROSPECTION_MAKEFILE)

endif # HAVE_INTROSPECTION

# polkit-agent-helper-1 need to be setuid root because it's used to
# authenticate not only the invoking user, but possibly also root
# and/or other users.
#
install-data-hook:
	-chown root $(DESTDIR)$(libprivdir)/polkit-agent-helper-1
	-chmod 4755 $(DESTDIR)$(libprivdir)/polkit-agent-helper-1

EXTRA_DIST =				\
	polkitagentmarshal.list		\
	polkitagentenumtypes.h.template	\
	polkitagentenumtypes.c.template	\
	meson.build			\
	$(NULL)

CLEANFILES = $(gir_DATA) $(typelibs_DATA)

dist-hook :
	(for i in $(marshal_built_sources) $(BUILT_SOURCES) ; do rm -f $(distdir)/$$i ; done)

clean-local :
	rm -f *~ $(marshal_built_sources) $(BUILT_SOURCES)

-include $(top_srcdir)/git.mk