diff --git a/parse/Makefile b/parse/Makefile index 9d324d73..d58c18bf 100644 --- a/parse/Makefile +++ b/parse/Makefile @@ -1,3 +1,20 @@ +# $Id: Makefile,v 1.5 2008/03/23 17:21:34 karl Exp $ +# +# Copyright (C) 2008 Rocky Bernstein +# +# This program 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, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 this program. If not, see . + INCLUDES = -I . all: cueparser cuelexer tocparser diff --git a/parse/cue.L b/parse/cue.L index 51d4317a..814c56e4 100644 --- a/parse/cue.L +++ b/parse/cue.L @@ -1,5 +1,20 @@ -/* $Id: cue.L,v 1.1 2003/05/11 03:29:25 rocky Exp $ -*- C -*- */ -/* CUE-sheet scanner */ +/* $Id: cue.L,v 1.2 2008/03/23 17:21:34 karl Exp $ -*- C -*- */ +/* CUE-sheet scanner + Copyright (C) 2005, 2008 Rocky Bernstein + + This program 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, either version 3 of the License, or + (at your option) any later version. + + This program 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 this program. If not, see . +*/ %{ #undef yywrap diff --git a/parse/cue.y b/parse/cue.y index 489b0c1f..76c11c5e 100644 --- a/parse/cue.y +++ b/parse/cue.y @@ -1,4 +1,22 @@ %{ +/* $Id: cue.y,v 1.2 2008/03/23 17:21:34 karl Exp $ + + Copyright (C) 2005, 2008 Rocky Bernstein + + This program 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, either version 3 of the License, or + (at your option) any later version. + + This program 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 this program. If not, see . +*/ + #include #include extern FILE *cuein; diff --git a/parse/toc.L b/parse/toc.L index d4bba123..945d6b27 100644 --- a/parse/toc.L +++ b/parse/toc.L @@ -1,5 +1,20 @@ -/* $Id: toc.L,v 1.1 2005/10/27 11:20:21 rocky Exp $ -*- C -*- */ -/* cdrdao TOC scanner */ +/* $Id: toc.L,v 1.2 2008/03/23 17:21:34 karl Exp $ -*- C -*- */ +/* cdrdao TOC scanner + Copyright (C) 2005, 2008 Rocky Bernstein + + This program 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, either version 3 of the License, or + (at your option) any later version. + + This program 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 this program. If not, see . +*/ %{ #undef yywrap diff --git a/parse/toc.y b/parse/toc.y index 6bca63b8..967ed089 100644 --- a/parse/toc.y +++ b/parse/toc.y @@ -1,11 +1,11 @@ /* - $Id: toc.y,v 1.2 2005/02/01 03:35:12 rocky Exp $ + $Id: toc.y,v 1.3 2008/03/23 17:21:34 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify + This program 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; either version 2 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see . */ /* Yacc grammer for cdrdao TOC file */ %{ diff --git a/parse/toclexer.c b/parse/toclexer.c index e0670c0e..c49994b9 100644 --- a/parse/toclexer.c +++ b/parse/toclexer.c @@ -1,11 +1,11 @@ /* - $Id: toclexer.c,v 1.1 2005/01/31 10:20:51 rocky Exp $ + $Id: toclexer.c,v 1.2 2008/03/23 17:21:34 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify + This program 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; either version 2 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see . */ /* Lexical scanner for cdrdao's TOC. */ diff --git a/parse/toclexer.h b/parse/toclexer.h index da5abe14..26150558 100644 --- a/parse/toclexer.h +++ b/parse/toclexer.h @@ -1,11 +1,11 @@ /* - $Id: toclexer.h,v 1.1 2005/01/31 10:20:51 rocky Exp $ + $Id: toclexer.h,v 1.2 2008/03/23 17:21:34 karl Exp $ - Copyright (C) 2005 Rocky Bernstein + Copyright (C) 2005, 2008 Rocky Bernstein - This program is free software; you can redistribute it and/or modify + This program 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; either version 2 of the License, or + the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -14,8 +14,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see . */ /* Common header between TOC lexer and parser. */