biconcur jam and remove a Makefile

This commit is contained in:
Kenneth Heafield 2011-11-25 10:39:28 +00:00
parent cf5e9641f3
commit 4393d00cbd
3 changed files with 3 additions and 21 deletions

View File

@ -0,0 +1,3 @@
exe biconcur : Vocabulary.cpp SuffixArray.cpp TargetCorpus.cpp Alignment.cpp Mismatch.cpp PhrasePair.cpp PhrasePairCollection.cpp biconcor.cpp base64.cpp ;
install legacy : biconcur : <location>. ;

View File

@ -1,10 +0,0 @@
all: biconcor
clean:
rm -f *.o
.cpp.o:
g++ -O6 -g -c $<
biconcor: Vocabulary.o SuffixArray.o TargetCorpus.o Alignment.o Mismatch.o PhrasePair.o PhrasePairCollection.o biconcor.o base64.o
g++ Vocabulary.o SuffixArray.o TargetCorpus.o Alignment.o Mismatch.o PhrasePair.o PhrasePairCollection.o biconcor.o base64.o -o biconcor

View File

@ -1,11 +0,0 @@
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
$(CXX) -O3 -o $@ $(@).cpp cmd.o