-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
22 lines (15 loc) · 764 Bytes
/
makefile
File metadata and controls
22 lines (15 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all:NLP_Earley_Parser_main
NLP_Earley_Parser_main:EarleyParser.o Node.o Production.o State.o NLP_Earley_Parser_main.o
g++ -o NLP_Earley_Parser_main EarleyParser.o Node.o Production.o State.o NLP_Earley_Parser_main.o
NLP_Earley_Parser_main.o:NLP_Earley_Parser_main.cpp
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -c NLP_Earley_Parser_main.cpp
EarleyParser.o:EarleyParser.cpp
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -c EarleyParser.cpp
Node.o:Node.cpp
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -c Node.cpp
Production.o:Production.cpp
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -c Production.cpp
State.o:State.cpp
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -c State.cpp
clean:
rm -rf *o NLP_Earley_Parser_main