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

github.com/moses-smt/giza-pp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredpony <redpony@ca354974-eb3a-0410-8f5c-d3948404989b>2007-09-25 05:56:49 +0400
committerredpony <redpony@ca354974-eb3a-0410-8f5c-d3948404989b>2007-09-25 05:56:49 +0400
commit4bf5e78d59d755f5f97a78b5ff76829c81b16a80 (patch)
tree751561816a3f416950c78e7890c77247f97913a2 /Makefile
Initial check in, based on GIZA++-v2 modified to compile on gcc 4.1.1
.C and .cc suffixes were normalized to .cpp. This is for standardization and to prevent accidental overwrites with previous versions of the code by copying.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..afe9e9d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+
+.PHONY: gizapp mkcls-v2
+
+all: gizapp mkcls-v2
+
+gizapp:
+ $(MAKE) -C GIZA++-v2
+
+mkcls-v2:
+ $(MAKE) -C mkcls-v2
+
+clean:
+ $(MAKE) -C GIZA++-v2 clean
+ $(MAKE) -C mkcls-v2 clean