diff options
author | David Zeuthen <davidz@redhat.com> | 2009-09-12 15:49:53 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2009-09-12 15:49:53 -0400 |
commit | ffc99a261f23a2baecf5f777d89f9a14d57d7c0f (patch) | |
tree | 56a7d3c13a58c06a78e54aacc4d751806e8f3a0a /src/programs/Makefile.am | |
parent | 2a932ebb20c93d9a81eb89eab25a9cea7b8b388a (diff) | |
download | polkit-ffc99a261f23a2baecf5f777d89f9a14d57d7c0f.tar.gz |
Implement lockdown for the Local Authority implementation
Diffstat (limited to 'src/programs/Makefile.am')
-rw-r--r-- | src/programs/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/programs/Makefile.am b/src/programs/Makefile.am index 074fb39..226c9f3 100644 --- a/src/programs/Makefile.am +++ b/src/programs/Makefile.am @@ -17,7 +17,7 @@ INCLUDES = \ # ---------------------------------------------------------------------------------------------------- -bin_PROGRAMS = pkexec pkcheck pkaction +bin_PROGRAMS = pkexec pkcheck pkaction pklalockdown # ---------------------------------------------------------------------------------------------------- @@ -82,6 +82,19 @@ pkaction_LDADD = \ # ---------------------------------------------------------------------------------------------------- +pklalockdown_SOURCES = pklalockdown.c + +pklalockdown_CFLAGS = \ + $(GLIB_CFLAGS) \ + $(NULL) + +pklalockdown_LDADD = \ + $(GLIB_LDADD) \ + $(top_builddir)/src/polkit/libpolkit-gobject-1.la \ + $(NULL) + +# ---------------------------------------------------------------------------------------------------- + clean-local : rm -f *~ |