Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / python / Makefile
index 0fe4954..90fa83a 100644 (file)
@@ -1,19 +1,23 @@
-# Copyright 2005-2008, Ecole des Mines de Nantes, University of Copenhagen
-# Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller
+# Copyright 2012, INRIA
+# Julia Lawall, Gilles Muller
+# Copyright 2010-2011, INRIA, University of Copenhagen
+# Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
+# Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
+# Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
 # This file is part of Coccinelle.
-# 
+#
 # Coccinelle is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation, according to version 2 of the License.
-# 
+#
 # Coccinelle is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with Coccinelle.  If not, see <http://www.gnu.org/licenses/>.
-# 
+#
 # The authors reserve the right to distribute this or future versions of
 # Coccinelle under other licenses.
 
 ##############################################################################
 TARGET=coccipython
 
-SOURCES= pycocci_aux.ml pycocci.ml 
+SOURCES= pycocci_aux.ml $(PYCOCCI_FILE) pycocci.ml
 
-INCLUDEDIRS = ../commons ../commons/ocamlextra ../globals ../pycaml \
-             ../parsing_c ../parsing_cocci
+INCLUDEDIRS_LOCAL = ../commons ../commons/ocamlextra ../globals \
+                   ../parsing_c ../parsing_cocci
 
-SYSLIBS = str.cma unix.cma
-LIBS=../commons/commons.cma ../globals/globals.cma 
-
-#     ../ctl/ctl.cma \
-#     ../parsing_c/c_parser.cma ../parsing_cocci/cocci_parser.cma 
-#pycaml/pycaml.cma 
+ifeq ("$(PYCAMLDIR)", "pycaml")
+INCLUDEDIRS_LOCAL += ../$(PYCAMLDIR)
+INCLUDEDIRS = $(INCLUDEDIRS_LOCAL)
+else
+INCLUDEDIRS = $(INCLUDEDIRS_LOCAL) $(PYCAMLDIR)
+endif
 
+SYSLIBS = str.cma unix.cma pycaml.cma
+LIBS=../commons/commons.cma ../globals/globals.cma
 
 ##############################################################################
 # Generic variables
 ##############################################################################
 
 INCLUDES=$(INCLUDEDIRS:%=-I %) $(INCLUDESEXTRA)
+INCLUDES_DEPEND=$(INCLUDEDIRS_LOCAL:%=-I %) $(INCLUDESEXTRA)
 
 ##############################################################################
 # Generic ocaml variables
@@ -55,7 +62,7 @@ INCLUDES=$(INCLUDEDIRS:%=-I %) $(INCLUDESEXTRA)
 OCAMLCFLAGS ?= -g -dtypes
 OCAMLC =ocamlc$(OPTBIN) $(OCAMLCFLAGS) $(INCLUDES)
 OCAMLOPT = ocamlopt$(OPTBIN) $(OPTFLAGS) $(INCLUDES)
-OCAMLDEP = ocamldep$(OPTBIN) $(INCLUDES)
+OCAMLDEP = ocamldep$(OPTBIN) $(INCLUDES_DEPEND)
 
 
 ##############################################################################
@@ -90,7 +97,7 @@ clean::
        rm -f $(LIB)
 
 
-$(OPTLIB): $(OPTOBJS) 
+$(OPTLIB): $(OPTOBJS)
        $(OCAMLOPT) -a -o $(OPTLIB) $(OPTOBJS)
 
 
@@ -102,16 +109,15 @@ $(CTLEXEC): $(CTLOBJS) $(LIBS)
 
 
 clean::
-       rm -f $(OPTLIB) $(LIB:.cma=.a)  
-       rm -f $(TARGET) rm -f $(TARGET).byte
+       rm -f $(OPTLIB) $(LIB:.cma=.a)
+       rm -f $(TARGET)
+       rm -f $(TARGET).byte
        rm -f $(CTLTARGET)
 
-
-#pycocci.ml: ../pycaml/pycaml.ml ../pycaml/pycaml_ml.c
-#pycocci_aux.ml:  ../pycaml/pycaml.ml ../pycaml/pycaml_ml.c
-
-rmlinks:
-       rm -f pycocci.ml pycocci_aux.ml
+distclean::
+       $(MAKE) -C coccilib $@
+       rm -f .depend
+       rm -f pycocci.ml
 
 ##############################################################################
 # Generic ocaml rules
@@ -133,14 +139,14 @@ rmlinks:
 # clean rule for others files
 clean::
        rm -f *.cm[iox] *.o  *.annot
-       rm -f *~ .*~ #*# 
+       rm -f *~ .*~ #*#
 
 beforedepend:
 
 depend: beforedepend
        $(OCAMLDEP) *.mli *.ml > .depend
 
-.depend: 
+.depend:
        $(OCAMLDEP) *.mli *.ml > .depend
 
 -include .depend