Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. # -*- Mode: Makefile; -*-
  2. # C&C NLP tools
  3. # Copyright (c) Universities of Edinburgh, Oxford and Sydney
  4. # Copyright (c) James R. Curran
  5. #
  6. # This software is covered by a non-commercial use licence.
  7. # See LICENCE.txt for the full text of the licence.
  8. #
  9. # If LICENCE.txt is not included in this distribution
  10. # please email candc@it.usyd.edu.au to obtain a copy.
  11.  
  12. PORT = macosx
  13. PORT_OBJS = src/lib/ports/bsd.o src/lib/ports/unix_common.o src/lib/ports/colour.o
  14.  
  15. CC = gcc
  16. CFLAGS = -Wall -O3 -fno-common $(INC)
  17.  
  18. CXX = g++
  19. CXXFLAGS = $(CFLAGS)
  20.  
  21. LD=$(CXX)
  22. LDFLAGS =
  23. DEPEND = $(CC) $(INC)
  24.  
  25. INC = -Isrc/include
  26. LIBS = -Llib -lm
  27.  
  28. SOAP_INC = -Iext/include
  29. SOAP_LIBS = $(LIBS) -Lext/lib -lgsoap++
  30. SOAP_CPP = ext/bin/soapcpp2
  31. SOAP_CXXFLAGS = $(CXXFLAGS) $(SOAP_INC)
  32. SOAP_LDFLAGS = $(LDFLAGS)
  33.  
  34. PYTHON = python2.4
  35.  
  36. SHAREDLIB = dylib
  37. LIB_LDFLAGS = -dynamiclib $(LDFLAGS)
  38.  
  39. PY_INC = -Iext/include -I/Library/Frameworks/Python.framework/Versions/Current/include/python2.4
  40. PY_LIBS = $(LIBS) -lcandc -Lext/lib -lboost_python-1_33_1 -framework Python
  41. PY_CXXFLAGS = $(CXXFLAGS) -fPIC $(PY_INC)
  42. PY_LDFLAGS = -bundle $(LDFLAGS)
  43.  
  44. MPIXX = mpicxx
  45.  
  46. LEX = flex
  47.  
  48. PROLOG = swipl
  49.  
  50. include Makefile.targets
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement