forked from westes/flex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move flex program sources into src/ directory
The *.[chly] sources are now in the src directory. This implies a bunch of changes in Makefile.am and friends to account for the new location. The .gitignore files are now more local to places where various object files and generated source files occur.
- Loading branch information
Showing
41 changed files
with
191 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,22 @@ | ||
*.orig | ||
*.rej | ||
*.tar.bz2 | ||
*.tar.gz | ||
.bootstrap | ||
*.tar.xz | ||
*~ | ||
.deps | ||
.libs | ||
ABOUT-NLS | ||
ChangeLog | ||
INSTALL | ||
Makefile | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache | ||
compile | ||
conf.in | ||
config.cache | ||
config.guess | ||
config.h | ||
build-aux | ||
config.log | ||
config.status* | ||
config.sub | ||
config.status | ||
configure | ||
depcomp | ||
flex | ||
flex-* | ||
install-sh | ||
missing | ||
libtool | ||
mkinstalldirs | ||
parse.c | ||
parse.h | ||
scan.c | ||
skel.c | ||
stamp-* | ||
config.rpath | ||
ylwrap | ||
*.o | ||
.libs | ||
*.lo | ||
*.la | ||
libtool | ||
ltmain.sh | ||
*~ | ||
*.orig | ||
*.rej |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,16 @@ | |
|
||
# autoconf requirements and initialization | ||
|
||
AC_INIT([the fast lexical analyser generator], [2.6.0 | ||
AC_INIT([the fast lexical analyser generator], [2.6.0], | ||
[[email protected]], [flex]) | ||
SHARED_VERSION_INFO="2:0:0" | ||
AC_SUBST(SHARED_VERSION_INFO) | ||
AC_CONFIG_SRCDIR([scan.l]) | ||
AC_CONFIG_SRCDIR([src/scan.l]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AM_INIT_AUTOMAKE([gnu check-news std-options dist-bzip2 dist-xz 1.10]) | ||
AC_CONFIG_HEADER([config.h:conf.in]) | ||
AC_CONFIG_HEADER([src/config.h]) | ||
AC_CONFIG_LIBOBJ_DIR([lib]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
||
# checks for programs | ||
|
||
|
@@ -118,6 +119,7 @@ examples/fastwc/Makefile | |
examples/manual/Makefile | ||
lib/Makefile | ||
po/Makefile.in | ||
src/Makefile | ||
tests/Makefile | ||
tests/TEMPLATE/Makefile | ||
tests/test-array-nr/Makefile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
*.aux | ||
*.cp | ||
*.cps | ||
*.dvi | ||
*.fn | ||
*.fns | ||
*.hk | ||
*.hks | ||
*.info* | ||
*.ky | ||
*.log | ||
*.op | ||
*.ops | ||
*.pg | ||
*.toc | ||
*.tp | ||
*.tps | ||
*.vr | ||
*.vrs | ||
flex.aux | ||
flex.cp | ||
flex.cps | ||
flex.dvi | ||
flex.fn | ||
flex.fns | ||
flex.hk | ||
flex.hks | ||
flex.info* | ||
flex.ky | ||
flex.log | ||
flex.op | ||
flex.ops | ||
flex.pg | ||
flex.toc | ||
flex.tp | ||
flex.tps | ||
flex.vr | ||
flex.vrs | ||
Makefile | ||
Makefile.in | ||
flex.1 | ||
flex.pdf | ||
flex.ps | ||
mdate-sh | ||
stamp-* | ||
version.texi | ||
flex.html | ||
texinfo.tex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.la | ||
*.lo | ||
*.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*.la | ||
*.lo | ||
*.o | ||
config.h | ||
config.h.in | ||
flex | ||
parse.c | ||
parse.h | ||
scan.c | ||
skel.c |
File renamed without changes.
Oops, something went wrong.