forked from HIT-SCIR/ltp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request HIT-SCIR#81 from ruoshui1126/personal
test output directory
- Loading branch information
Showing
17 changed files
with
101 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
################################################# | ||
# Example for call LTP libraries under UNIX # | ||
################################################# | ||
cc=g++ | ||
ccflags=-O2 | ||
all: cws \ | ||
pos \ | ||
par \ | ||
ner \ | ||
srl | ||
|
||
cws: cws.cpp | ||
${cc} ${ccflags} -o cws cws.cpp -I./ \ | ||
-I../include/ \ | ||
-I../thirdparty/boost/include \ | ||
-L../lib/ -lsegmentor -lboost_regex | ||
|
||
pos: pos.cpp | ||
${cc} ${ccflags} -o pos pos.cpp -I./ \ | ||
-I../include/ \ | ||
-L../lib/ -lpostagger | ||
|
||
ner: ner.cpp | ||
${cc} ${ccflags} -o ner ner.cpp -I./ \ | ||
-I../include \ | ||
-L../lib/ -lner | ||
|
||
par: par.cpp | ||
${cc} ${ccflags} -o par par.cpp -I./ \ | ||
-I../include \ | ||
-L../lib -lparser | ||
|
||
srl: srl.cpp | ||
${cc} ${ccflags} -o srl srl.cpp -I./ \ | ||
-I../include \ | ||
-L../lib -lsrl | ||
|
||
.PHONY: clean | ||
|
||
clean: | ||
rm cws | ||
rm pos | ||
rm ner | ||
rm par | ||
rm srl |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters