summaryrefslogtreecommitdiff
path: root/yacc
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1996-04-30 14:53:58 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1996-04-30 14:53:58 +0000
commit2301d778e79a859efe0dc02bd6a676120f1b83a6 (patch)
tree0d8b7afdcc1fe3523a57ffb7a569eb1a9db6991f /yacc
parent1cbdeef09bbc3ab0a312b3c0438f588392ec2aa2 (diff)
downloadocaml-2301d778e79a859efe0dc02bd6a676120f1b83a6.tar.gz
Renommage en Objective Caml
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@782 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'yacc')
-rw-r--r--yacc/.cvsignore2
-rw-r--r--yacc/Makefile8
-rw-r--r--yacc/Makefile.nt8
-rw-r--r--yacc/closure.c4
-rw-r--r--yacc/defs.h4
-rw-r--r--yacc/error.c4
-rw-r--r--yacc/lalr.c4
-rw-r--r--yacc/lr0.c4
-rw-r--r--yacc/main.c4
-rw-r--r--yacc/mkpar.c4
-rw-r--r--yacc/output.c4
-rw-r--r--yacc/reader.c4
-rw-r--r--yacc/skeleton.c4
-rw-r--r--yacc/symtab.c4
-rw-r--r--yacc/verbose.c4
-rw-r--r--yacc/warshall.c4
16 files changed, 35 insertions, 35 deletions
diff --git a/yacc/.cvsignore b/yacc/.cvsignore
index 94c6c912a2..f3588fdb54 100644
--- a/yacc/.cvsignore
+++ b/yacc/.cvsignore
@@ -1 +1 @@
-cslyacc
+ocamlyacc
diff --git a/yacc/Makefile b/yacc/Makefile
index 2ef97a99ec..238929a404 100644
--- a/yacc/Makefile
+++ b/yacc/Makefile
@@ -8,13 +8,13 @@ CFLAGS=-O -DNDEBUG $(BYTECCCOMPOPTS)
OBJS= closure.o error.o lalr.o lr0.o main.o mkpar.o output.o reader.o \
skeleton.o symtab.o verbose.o warshall.o
-all: cslyacc
+all: ocamlyacc
-cslyacc: $(OBJS)
- $(CC) $(CFLAGS) $(CCLINKFLAGS) -o cslyacc $(OBJS)
+ocamlyacc: $(OBJS)
+ $(CC) $(CFLAGS) $(CCLINKFLAGS) -o ocamlyacc $(OBJS)
clean:
- rm -f *.o cslyacc *~
+ rm -f *.o ocamlyacc *~
depend:
diff --git a/yacc/Makefile.nt b/yacc/Makefile.nt
index 86231f37e0..37ee405497 100644
--- a/yacc/Makefile.nt
+++ b/yacc/Makefile.nt
@@ -8,13 +8,13 @@ CFLAGS=-DNDEBUG -DNO_UNIX $(BYTECCCOMPOPTS)
OBJS= closure.obj error.obj lalr.obj lr0.obj main.obj mkpar.obj output.obj reader.obj \
skeleton.obj symtab.obj verbose.obj warshall.obj
-all: cslyacc.exe
+all: ocamlyacc.exe
-cslyacc.exe: $(OBJS)
- $(CC) $(CFLAGS) $(CCLINKFLAGS) -o cslyacc.exe $(OBJS)
+ocamlyacc.exe: $(OBJS)
+ $(CC) $(CFLAGS) $(CCLINKFLAGS) -o ocamlyacc.exe $(OBJS)
clean:
- rm -f *.obj cslyacc.exe *~
+ rm -f *.obj ocamlyacc.exe *~
depend:
diff --git a/yacc/closure.c b/yacc/closure.c
index 7dcd2aacb8..c47df93a43 100644
--- a/yacc/closure.c
+++ b/yacc/closure.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/defs.h b/yacc/defs.h
index 1c3338d599..bdf9183a9c 100644
--- a/yacc/defs.h
+++ b/yacc/defs.h
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/error.c b/yacc/error.c
index ae65dd714c..f41f861fa4 100644
--- a/yacc/error.c
+++ b/yacc/error.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/lalr.c b/yacc/lalr.c
index 3e031c57fb..b971f11ad9 100644
--- a/yacc/lalr.c
+++ b/yacc/lalr.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/lr0.c b/yacc/lr0.c
index c38a686a40..cadf5871c3 100644
--- a/yacc/lr0.c
+++ b/yacc/lr0.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/main.c b/yacc/main.c
index 96df510d73..a877290527 100644
--- a/yacc/main.c
+++ b/yacc/main.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/mkpar.c b/yacc/mkpar.c
index 854bd3d0a5..4d5346d29d 100644
--- a/yacc/mkpar.c
+++ b/yacc/mkpar.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/output.c b/yacc/output.c
index 9a70c17722..a4b2366777 100644
--- a/yacc/output.c
+++ b/yacc/output.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/reader.c b/yacc/reader.c
index 0fe134d5c8..63688e354e 100644
--- a/yacc/reader.c
+++ b/yacc/reader.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/skeleton.c b/yacc/skeleton.c
index b2869e1964..72b039ad88 100644
--- a/yacc/skeleton.c
+++ b/yacc/skeleton.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/symtab.c b/yacc/symtab.c
index e13127927b..4cf7e6beea 100644
--- a/yacc/symtab.c
+++ b/yacc/symtab.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/verbose.c b/yacc/verbose.c
index f172db578c..270528ddb1 100644
--- a/yacc/verbose.c
+++ b/yacc/verbose.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
diff --git a/yacc/warshall.c b/yacc/warshall.c
index 50561136b2..e9be403ca2 100644
--- a/yacc/warshall.c
+++ b/yacc/warshall.c
@@ -1,10 +1,10 @@
/***********************************************************************/
/* */
-/* Caml Special Light */
+/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
-/* Copyright 1995 Institut National de Recherche en Informatique et */
+/* Copyright 1996 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/