mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-20 09:43:03 +00:00
Reorganized: sources in src', documentation in doc'.
This commit is contained in:
22
.cvsignore
22
.cvsignore
@@ -1,26 +1,7 @@
|
|||||||
*_.c
|
|
||||||
.deps
|
|
||||||
ChangeLog
|
ChangeLog
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
ansi2knr
|
|
||||||
bison
|
|
||||||
bison.aux
|
|
||||||
bison.cp
|
|
||||||
bison.cps
|
|
||||||
bison.dvi
|
|
||||||
bison.fn
|
|
||||||
bison.info
|
|
||||||
bison.info-[0-9]*
|
|
||||||
bison.ky
|
|
||||||
bison.log
|
|
||||||
bison.pg
|
|
||||||
bison.ps
|
|
||||||
bison.simple
|
|
||||||
bison.toc
|
|
||||||
bison.tp
|
|
||||||
bison.vr
|
|
||||||
config.cache
|
config.cache
|
||||||
config.h
|
config.h
|
||||||
config.hin
|
config.hin
|
||||||
@@ -28,6 +9,3 @@ config.log
|
|||||||
config.status
|
config.status
|
||||||
configure
|
configure
|
||||||
stamp-h
|
stamp-h
|
||||||
stamp-vti
|
|
||||||
version.c
|
|
||||||
version.texi
|
|
||||||
|
|||||||
32
Makefile.am
32
Makefile.am
@@ -1,32 +1,8 @@
|
|||||||
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
||||||
AUTOMAKE_OPTIONS = 1.4 ansi2knr
|
AUTOMAKE_OPTIONS = 1.4
|
||||||
|
|
||||||
SUBDIRS = intl po
|
SUBDIRS = intl po src doc
|
||||||
|
|
||||||
bin_PROGRAMS = bison
|
EXTRA_DIST = REFERENCES configure.bat OChangeLog
|
||||||
|
|
||||||
bison_SOURCES = LR0.c allocate.c closure.c conflicts.c derives.c \
|
DISTCLEANFILES = intl/libintl.h
|
||||||
files.c getargs.c gram.c lalr.c lex.c main.c nullable.c output.c \
|
|
||||||
print.c reader.c reduce.c symtab.c warshall.c version.c getopt.c \
|
|
||||||
getopt1.c
|
|
||||||
|
|
||||||
EXTRA_bison_SOURCES = vmsgetargs.c
|
|
||||||
|
|
||||||
bison_LDADD = @ALLOCA@
|
|
||||||
|
|
||||||
noinst_HEADERS = alloc.h files.h gram.h lex.h machine.h state.h \
|
|
||||||
symtab.h system.h types.h getopt.h
|
|
||||||
|
|
||||||
data_DATA = bison.simple bison.hairy
|
|
||||||
info_TEXINFOS = bison.texinfo
|
|
||||||
man_MANS = bison.1
|
|
||||||
|
|
||||||
EXTRA_DIST = bison.1 bison.s1 bison.hairy REFERENCES configure.bat \
|
|
||||||
build.com bison.cld bison.rnh vmshlp.mar OChangeLog
|
|
||||||
|
|
||||||
bison.simple: bison.s1 Makefile
|
|
||||||
-rm -f $@
|
|
||||||
sed -e "/^#line/ s|bison|$(datadir)/bison|" -e "s/@bison_version@/$(VERSION)/" < $(srcdir)/bison.s1 > $@-tmp
|
|
||||||
mv $@-tmp $@
|
|
||||||
|
|
||||||
DISTCLEANFILES = bison.simple intl/libintl.h
|
|
||||||
|
|||||||
20
POTFILES.in
20
POTFILES.in
@@ -1,20 +0,0 @@
|
|||||||
# List of files which contain translatable strings.
|
|
||||||
# Copyright (C) 1996 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
# Package source files
|
|
||||||
allocate.c
|
|
||||||
closure.c
|
|
||||||
conflicts.c
|
|
||||||
derives.c
|
|
||||||
getargs.c
|
|
||||||
lalr.c
|
|
||||||
lex.c
|
|
||||||
main.c
|
|
||||||
nullable.c
|
|
||||||
output.c
|
|
||||||
print.c
|
|
||||||
reader.c
|
|
||||||
reduce.c
|
|
||||||
|
|
||||||
# Common library files
|
|
||||||
getopt.c
|
|
||||||
@@ -44,4 +44,4 @@ BISON_DEFINE_FILE(XPFILE, PFILE)
|
|||||||
PFILE1="${datadir}/bison.hairy"
|
PFILE1="${datadir}/bison.hairy"
|
||||||
BISON_DEFINE_FILE(XPFILE1, PFILE1)
|
BISON_DEFINE_FILE(XPFILE1, PFILE1)
|
||||||
|
|
||||||
AC_OUTPUT(Makefile intl/Makefile po/Makefile.in)
|
AC_OUTPUT(Makefile intl/Makefile po/Makefile.in src/Makefile doc/Makefile)
|
||||||
|
|||||||
19
doc/.cvsignore
Normal file
19
doc/.cvsignore
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
ChangeLog
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
bison.aux
|
||||||
|
bison.cp
|
||||||
|
bison.cps
|
||||||
|
bison.dvi
|
||||||
|
bison.fn
|
||||||
|
bison.info
|
||||||
|
bison.info-[0-9]*
|
||||||
|
bison.ky
|
||||||
|
bison.log
|
||||||
|
bison.pg
|
||||||
|
bison.ps
|
||||||
|
bison.toc
|
||||||
|
bison.tp
|
||||||
|
bison.vr
|
||||||
|
stamp-vti
|
||||||
|
version.texi
|
||||||
7
doc/Makefile.am
Normal file
7
doc/Makefile.am
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
||||||
|
AUTOMAKE_OPTIONS = 1.4
|
||||||
|
|
||||||
|
info_TEXINFOS = bison.texinfo
|
||||||
|
man_MANS = bison.1
|
||||||
|
|
||||||
|
EXTRA_DIST = bison.1 bison.rnh
|
||||||
8
src/.cvsignore
Normal file
8
src/.cvsignore
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
*_.c
|
||||||
|
.deps
|
||||||
|
ChangeLog
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
ansi2knr
|
||||||
|
bison
|
||||||
|
bison.simple
|
||||||
27
src/Makefile.am
Normal file
27
src/Makefile.am
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
## Process this file with automake to produce Makefile.in -*-Makefile-*-
|
||||||
|
AUTOMAKE_OPTIONS = 1.4 ansi2knr
|
||||||
|
|
||||||
|
bin_PROGRAMS = bison
|
||||||
|
|
||||||
|
bison_SOURCES = LR0.c allocate.c closure.c conflicts.c derives.c \
|
||||||
|
files.c getargs.c gram.c lalr.c lex.c main.c nullable.c output.c \
|
||||||
|
print.c reader.c reduce.c symtab.c warshall.c version.c getopt.c \
|
||||||
|
getopt1.c
|
||||||
|
|
||||||
|
EXTRA_bison_SOURCES = vmsgetargs.c
|
||||||
|
|
||||||
|
bison_LDADD = @ALLOCA@
|
||||||
|
|
||||||
|
noinst_HEADERS = alloc.h files.h gram.h lex.h machine.h state.h \
|
||||||
|
symtab.h system.h types.h getopt.h
|
||||||
|
|
||||||
|
data_DATA = bison.simple bison.hairy
|
||||||
|
|
||||||
|
EXTRA_DIST = bison.s1 bison.hairy build.com bison.cld vmshlp.mar
|
||||||
|
|
||||||
|
bison.simple: bison.s1 Makefile
|
||||||
|
-rm -f $@
|
||||||
|
sed -e "/^#line/ s|bison|$(datadir)/bison|" -e "s/@bison_version@/$(VERSION)/" < $(srcdir)/bison.s1 > $@-tmp
|
||||||
|
mv $@-tmp $@
|
||||||
|
|
||||||
|
DISTCLEANFILES = bison.simple
|
||||||
Reference in New Issue
Block a user