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

Makefile « symal « training « scripts - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94dfa915238826daeb7e0874edbb063969801ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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