summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAge
* build: ignore .sig files.Will Estes2017-05-06
| | | | | We generate gpg signatures in place for releases. Since these should not be tracked in the flex repo itself, we tell git to ignore them.
* build: no longer ignore *.tar.bz2Will Estes2017-05-06
| | | | | Since we no longer generate *.tar.bz2 archives, we do not need to tell git to ignore them.
* build: switch xz to lzipWill Estes2016-10-24
|
* Ignored autoscan filesWill Estes2015-12-10
|
* Ignore directories build-aux/, m4/Will Estes2014-11-14
| | | | | | Since build-aux/ now contains a number of files previously at the top level, we ignore build-aux/. Therefore, it's not necessary to list any files that are now kept in it. Also, explicitly mark m4/ as a directory to ignore.
* do not track m4 subdirectory any moreWill Estes2014-11-12
|
* upgrade automake version to 1.14.1Will Estes2014-11-12
| | | | | | | Unfortunately, automake 1.14.1 does not play nicely with AC_CONFIG_AUX_DIR, so upgrading the used automake version required removing the build-aux directory and letting autoconf's installed helper files live more over the tree.
* git ignore directories of the form flex-*Will Estes2014-02-16
|
* move flex program sources into src/ directoryWill Estes2014-02-16
| | | | | | 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.
* Build libfl and libcompat using libtool; resolves #3586814Christoph Junghans2012-12-06
| | | | Signed-off-by: Will Estes <westes575@gmail.com>
* add more patterns to .gitignoreWill Estes2012-08-06
| | | | | | Undersome circumstances, the build process will generate conf.in~, which we want to ignore. Also, some patch files will apply but not cleanly and *.orig and *.rej files are generated. We want to ignore them as well.
* add *.o and *.a to top level .gitignoreWill Estes2012-07-22
| | | | | | | The cvs tree did not need these additions because cvs assumed a lot of C-style defaults for .cvsignore files. flex builds *.o object files in the course of compilation and *.a files are built as a part of the libraries that flex compiles in the build process.
* rename .cvsignore files to .gitignoreWill Estes2012-07-22
The .cvsignore files from the legacy cvs repository tracked what files got autogenerated during various stages of the flex build. Renaming the .cvsignore files to .gitignore lets git do the same thing. git is better about letting higher level .gitignore files not-track files in lower level directories. As I work my way through the test directories, we may add additional .gitignore files from the old .cvsignore files. The po/ directory has a lot of special files used by gettext, so the patterns in po/.gitignore look very different. The doc/.gitignore file accounts for what texinfo/makeinfo do, and so it also has special patterns. The m4 directory is mainly present for autoconf's benefit, but we have to account for it so make can do the right thing. Hence, m4/.gitignore says to ignore *.m4, as counterintuitive as that may seem.