summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-10-02 16:47:28 +0200
committerRob Crittenden <rcritten@redhat.com>2012-10-04 18:10:07 -0400
commit2ba1fb5f87875a8793aad35224cb24d3b89f9883 (patch)
treeb86a177a01d827bf798da5b9d66711e25381b019 /install
parent8b9d0e1160683f0a759c5818f0aab8c2c18bf802 (diff)
downloadfreeipa.git-2ba1fb5f87875a8793aad35224cb24d3b89f9883.tar.gz
freeipa.git-2ba1fb5f87875a8793aad35224cb24d3b89f9883.tar.xz
freeipa.git-2ba1fb5f87875a8793aad35224cb24d3b89f9883.zip
Kerberos authentication extension makefiles
Makefiles for new FF kerberos authentication extension ihttps://fedorahosted.org/freeipa/ticket/3094
Diffstat (limited to 'install')
-rw-r--r--install/Makefile.am1
-rw-r--r--install/configure.ac5
-rw-r--r--install/ffextension/Makefile.am23
-rw-r--r--install/ffextension/chrome/Makefile.am19
-rw-r--r--install/ffextension/chrome/content/Makefile.am17
-rw-r--r--install/ffextension/locale/Makefile.am19
-rw-r--r--install/ffextension/locale/en-US/Makefile.am16
7 files changed, 100 insertions, 0 deletions
diff --git a/install/Makefile.am b/install/Makefile.am
index 54c456a9..184855e6 100644
--- a/install/Makefile.am
+++ b/install/Makefile.am
@@ -7,6 +7,7 @@ NULL =
SUBDIRS = \
certmonger \
conf \
+ ffextension \
html \
migration \
share \
diff --git a/install/configure.ac b/install/configure.ac
index c5934d93..05ec8579 100644
--- a/install/configure.ac
+++ b/install/configure.ac
@@ -77,6 +77,11 @@ AC_CONFIG_FILES([
Makefile
certmonger/Makefile
conf/Makefile
+ ffextension/Makefile
+ ffextension/chrome/Makefile
+ ffextension/chrome/content/Makefile
+ ffextension/locale/Makefile
+ ffextension/locale/en-US/Makefile
html/Makefile
migration/Makefile
share/Makefile
diff --git a/install/ffextension/Makefile.am b/install/ffextension/Makefile.am
new file mode 100644
index 00000000..7a722056
--- /dev/null
+++ b/install/ffextension/Makefile.am
@@ -0,0 +1,23 @@
+AUTOMAKE_OPTIONS = 1.7
+
+NULL =
+
+SUBDIRS = \
+ chrome \
+ locale \
+ $(NULL)
+
+appdir = $(IPA_DATA_DIR)/ffextension
+app_DATA = \
+ bootstrap.js \
+ chrome.manifest \
+ install.rdf \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(app_DATA) \
+ $(NULL)
+
+MAINTAINERCLEANFILES = \
+ *~ \
+ Makefile.in
diff --git a/install/ffextension/chrome/Makefile.am b/install/ffextension/chrome/Makefile.am
new file mode 100644
index 00000000..10d23a7a
--- /dev/null
+++ b/install/ffextension/chrome/Makefile.am
@@ -0,0 +1,19 @@
+AUTOMAKE_OPTIONS = 1.7
+
+NULL =
+
+SUBDIRS = \
+ content \
+ $(NULL)
+
+appdir = $(IPA_DATA_DIR)/ffextension/chrome
+app_DATA = \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(app_DATA) \
+ $(NULL)
+
+MAINTAINERCLEANFILES = \
+ *~ \
+ Makefile.in
diff --git a/install/ffextension/chrome/content/Makefile.am b/install/ffextension/chrome/content/Makefile.am
new file mode 100644
index 00000000..7ff81e57
--- /dev/null
+++ b/install/ffextension/chrome/content/Makefile.am
@@ -0,0 +1,17 @@
+AUTOMAKE_OPTIONS = 1.7
+
+NULL =
+
+appdir = $(IPA_DATA_DIR)/ffextension/chrome/content
+app_DATA = \
+ kerberosauth_overlay.xul \
+ kerberosauth.js \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(app_DATA) \
+ $(NULL)
+
+MAINTAINERCLEANFILES = \
+ *~ \
+ Makefile.in
diff --git a/install/ffextension/locale/Makefile.am b/install/ffextension/locale/Makefile.am
new file mode 100644
index 00000000..7e64536e
--- /dev/null
+++ b/install/ffextension/locale/Makefile.am
@@ -0,0 +1,19 @@
+AUTOMAKE_OPTIONS = 1.7
+
+NULL =
+
+SUBDIRS = \
+ en-US \
+ $(NULL)
+
+appdir = $(IPA_DATA_DIR)/ffextension/locale
+app_DATA = \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(app_DATA) \
+ $(NULL)
+
+MAINTAINERCLEANFILES = \
+ *~ \
+ Makefile.in
diff --git a/install/ffextension/locale/en-US/Makefile.am b/install/ffextension/locale/en-US/Makefile.am
new file mode 100644
index 00000000..d19e8c7b
--- /dev/null
+++ b/install/ffextension/locale/en-US/Makefile.am
@@ -0,0 +1,16 @@
+AUTOMAKE_OPTIONS = 1.7
+
+NULL =
+
+appdir = $(IPA_DATA_DIR)/ffextension/locale/en-US
+app_DATA = \
+ kerberosauth.properties \
+ $(NULL)
+
+EXTRA_DIST = \
+ $(app_DATA) \
+ $(NULL)
+
+MAINTAINERCLEANFILES = \
+ *~ \
+ Makefile.in