forked from idaholab/moose
-
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.
Starting MOOSE project - adding license, copyright and export control
- Loading branch information
0 parents
commit 6724fe2
Showing
5 changed files
with
1,243 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,152 @@ | ||
.libs | ||
*.la | ||
*.lo | ||
*.d | ||
*.o | ||
*.a | ||
*-opt | ||
*-dbg | ||
*-oprof | ||
*.e | ||
*.nav | ||
*.log | ||
*.aux | ||
*.toc | ||
*.snm | ||
*.csv | ||
*.dylib | ||
*.so | ||
*.gitignore* | ||
*.vrb | ||
*.jou | ||
*.pyc | ||
*.mod | ||
*.e.* | ||
*.e-s* | ||
*.cfg | ||
*.lbd.* | ||
*.nem | ||
*.spd | ||
*.pex | ||
*.plist* | ||
*.bbl | ||
*.blg | ||
*.spl | ||
*.idx | ||
traceout*.txt | ||
*.xda | ||
*.xda.* | ||
*.xdr | ||
*.xdr.* | ||
*.mps | ||
*.msmp | ||
*.msmp-* | ||
*.muds | ||
# Latex garbage | ||
*.lot | ||
*.lof | ||
*.poly | ||
*.mpx | ||
*.btr | ||
*.xml | ||
*.gmv | ||
*.plt | ||
*.slh | ||
*.eps | ||
*.dat | ||
*.gp | ||
*.plugin | ||
*.outp | ||
*.patch | ||
*.txt | ||
*.bib.bak | ||
*.out | ||
.depend | ||
|
||
# Allow .e files in gold directories (7 levels) | ||
!/gold/*.e | ||
!/*/gold/*.e | ||
!/*/*/gold/*.e | ||
!/*/*/*/gold/*.e | ||
!/*/*/*/*/gold/*.e | ||
!/*/*/*/*/*/gold/*.e | ||
!/*/*/*/*/*/*/gold/*.e | ||
!/*/*/*/*/*/*/*/gold/*.e | ||
|
||
|
||
# Allow .csv files in gold directories (7 levels) | ||
!/gold/*.csv | ||
!/*/gold/*.csv | ||
!/*/*/gold/*.csv | ||
!/*/*/*/gold/*.csv | ||
!/*/*/*/*/gold/*.csv | ||
!/*/*/*/*/*/gold/*.csv | ||
!/*/*/*/*/*/*/gold/*.csv | ||
!/*/*/*/*/*/*/*/gold/*.csv | ||
|
||
peacock_run_tmp.i | ||
yaml_dump* | ||
|
||
# Generated header file | ||
HerdRevision.h | ||
|
||
# Precompiled headers | ||
moose/include/base/Precompiled.h.gch | ||
|
||
# test garbagge | ||
*.FAILED.txt | ||
|
||
# eclipse garbage | ||
.project | ||
.cproject | ||
.metadata | ||
.settings | ||
.pydevproject | ||
|
||
# vim garbage | ||
*~ | ||
.*.swp | ||
.*.swo | ||
|
||
moose/contrib/exodiff/exodiff | ||
|
||
# Mac garbage | ||
.DS_Store | ||
*.dSYM | ||
|
||
# Unit testing stuff | ||
moose_unit/test_results.xml | ||
|
||
# gcov code coverage files | ||
*.gcno | ||
*.gcda | ||
*.gcov | ||
|
||
# paraview state files | ||
*.pvsm | ||
|
||
#Peacock generated files | ||
peacock_*.i | ||
peacock_*.e | ||
|
||
# On linux, shared libs end in .0 sometimes | ||
libpcre-opt* | ||
libpcre-dbg* | ||
libmoose-opt* | ||
libmoose-dbg* | ||
|
||
#doxygen generated | ||
*/doc/doxygen/html/* | ||
moose/doc/doxygen/html/* | ||
|
||
# Restartable Data | ||
*.rd | ||
*.rd-* | ||
|
||
# Checkpoint Files | ||
*.cpa | ||
*.cpr | ||
*.cpa-* | ||
*.cpr-* | ||
|
Oops, something went wrong.