Skip to content

Commit

Permalink
Makefile: build fusion by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcc committed Aug 15, 2015
1 parent fe78550 commit 8165b34
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Expand Up @@ -218,7 +218,7 @@ ESTIMATORENV=
# TARGETS is the list of targets built when make is called
# without arguments
#
TARGETS = PARSE reranker-runtime
TARGETS = PARSE reranker-runtime fusion

.PHONY: top
top: $(TARGETS)
Expand All @@ -232,6 +232,12 @@ ZCAT = gunzip -c
PARSE:
$(MAKE) -C $(NBESTPARSERBASEDIR)/PARSE parseIt

# fusion builds the syntactic parse fuser
#
.PHONY: fusion
fusion:
$(MAKE) -C $(NBESTPARSERBASEDIR)/PARSE fusion

# TRAIN builds the programs needed to train the first-stage parser.
#
.PHONY: TRAIN
Expand Down

0 comments on commit 8165b34

Please sign in to comment.