Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mgizapp/Makefile.am')
-rw-r--r--mgizapp/Makefile.am29
1 files changed, 29 insertions, 0 deletions
diff --git a/mgizapp/Makefile.am b/mgizapp/Makefile.am
new file mode 100644
index 0000000..8b28f81
--- /dev/null
+++ b/mgizapp/Makefile.am
@@ -0,0 +1,29 @@
+## Process this file with automake to produce Makefile.in
+## Created by Anjuta
+
+SUBDIRS = src
+
+mgizadocdir = ${prefix}/doc/mgiza
+mgizadoc_DATA = \
+ README\
+ COPYING\
+ AUTHORS\
+ ChangeLog\
+ INSTALL\
+ NEWS
+
+mgizascriptsdir = ${prefix}/scripts/
+
+mgizascripts_SCRIPTS = \
+ scripts/*
+
+EXTRA_DIST = $(mgizadoc_DATA) \
+ ${mgizascripts_SCRIPTS}
+# Copy all the spec files. Of cource, only one is actually used.
+dist-hook:
+ for specfile in *.spec; do \
+ if test -f $$specfile; then \
+ cp -p $$specfile $(distdir); \
+ fi \
+ done
+