summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Leonard <tal@ecs.soton.ac.uk>2002-04-25 14:30:11 +0000
committerThomas Leonard <tal@ecs.soton.ac.uk>2002-04-25 14:30:11 +0000
commit401fb8f1194272d8d64cd431300fdefc3549f5ca (patch)
treec7aa45c4c4fee99ddbf87c6947e3a4f6b2361483
parentbc81d46e50fa2cbf981c712a700fbf1afcc6cf07 (diff)
downloadshared-mime-info-401fb8f1194272d8d64cd431300fdefc3549f5ca.tar.gz
Added build system.
-rw-r--r--Makefile.am8
-rw-r--r--configure.in6
2 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 00000000..4a6c3e52
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,8 @@
+## Process this file with automake to produce Makefile.in
+
+AUTOMAKE_OPTIONS = foreign
+
+mimeinfodir = $(datadir)/mime/mime-info
+mimeinfo_DATA = freedesktop-shared.mimeinfo
+
+EXTRA_DIST = shared-mime-info-spec.xml freedesktop-shared.mimeinfo
diff --git a/configure.in b/configure.in
new file mode 100644
index 00000000..46be774c
--- /dev/null
+++ b/configure.in
@@ -0,0 +1,6 @@
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT(freedesktop-shared.mimeinfo)
+AM_INIT_AUTOMAKE(shared-mime-info, 0.5)
+
+AC_OUTPUT(Makefile)