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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/training/symal/Makefile')
-rw-r--r--scripts/training/symal/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/training/symal/Makefile b/scripts/training/symal/Makefile
new file mode 100644
index 000000000..94dfa9152
--- /dev/null
+++ b/scripts/training/symal/Makefile
@@ -0,0 +1,13 @@
+CPP=g++ -g
+CC=gcc -g
+
+all: symal
+
+clean:
+ rm -f *.o
+
+cmd.o: cmd.c cmd.h
+ $(CC) -O3 -c -o cmd.o cmd.c
+
+symal: symal.cpp cmd.o
+ $(CPP) -O3 -o $@ $(@).cpp cmd.o