-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Latest stage of the C&C SVN (2614M).
- Loading branch information
Showing
870 changed files
with
813,482 additions
and
10,111 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
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,52 @@ | ||
# -*- Mode: Makefile; -*- | ||
# C&C NLP tools | ||
# Copyright (c) Universities of Edinburgh, Oxford and Sydney | ||
# Copyright (c) James R. Curran | ||
# | ||
# This software is covered by a non-commercial use licence. | ||
# See LICENCE.txt for the full text of the licence. | ||
# | ||
# If LICENCE.txt is not included in this distribution | ||
# please email candc@it.usyd.edu.au to obtain a copy. | ||
|
||
PORT = unix | ||
PORT_OBJS = src/lib/ports/unix.o src/lib/ports/unix_common.o src/lib/ports/colour.o | ||
|
||
CC = gcc | ||
CFLAGS = -W -Wall -Wextra -fPIC -O3 $(INC) | ||
|
||
CXX = g++ | ||
CXXFLAGS = $(CFLAGS) | ||
|
||
LD=$(CXX) | ||
LDFLAGS = -fPIC | ||
DEPEND = $(CC) $(INC) | ||
|
||
INC = -Isrc/include -isystem ext/include | ||
LIBS = -Llib -lm -Lext/lib | ||
|
||
SOAP_INC = $(INC) | ||
SOAP_LIBS = $(LIBS) -lgsoap++ | ||
SOAP_CPP = ext/bin/soapcpp2 | ||
SOAP_CXXFLAGS = $(CXXFLAGS) $(SOAP_INC) | ||
SOAP_LDFLAGS = $(LDFLAGS) | ||
|
||
PYTHON = python2.7 | ||
|
||
SHAREDLIB = so | ||
LIB_LDFLAGS = -shared $(LDFLAGS) | ||
|
||
PY_INC = -isystem ext/include -isystem /usr/include/$(PYTHON) | ||
PY_LIBS = $(LIBS) -lcandc -Lext/lib -lboost_python | ||
PY_CXXFLAGS = $(CXXFLAGS) $(PY_INC) | ||
PY_LDFLAGS = -shared $(LDFLAGS) | ||
|
||
MPIXX = /usr/bin/mpicxx | ||
MPI_CXXFLAGS = $(CXXFLAGS) -DMPICH_IGNORE_CXX_SEEK | ||
MPI_LIBS = $(LIBS) -lboost_mpi -lboost_serialization -lmrmpi | ||
|
||
LEX = flex | ||
|
||
PROLOG = swipl | ||
|
||
include Makefile.targets |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,6 @@ MPIXX = mpicxx | |
|
||
LEX = flex | ||
|
||
PROLOG = pl | ||
PROLOG = swipl | ||
|
||
include Makefile.targets |
Oops, something went wrong.