Don't package the inputs of the preassembly; just package the outputs. Clarify how `mk/package.sh` interacts with `.gitignore`. Eliminate unnecessary conditional logic in preassembly process.
46 lines
538 B
Plaintext
46 lines
538 B
Plaintext
# pregenerated/ cannot be here because we need `cargo package` to package stuff
|
|
# in it. However, we don't need/want `cargo package` to package pregenerated/tmp,
|
|
# so that can be here.
|
|
pregenerated/tmp
|
|
|
|
build/
|
|
ssl/test/runner/runner
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
*.swo
|
|
doc/*.html
|
|
doc/doc.css
|
|
|
|
*.bk
|
|
*.orig
|
|
*~
|
|
|
|
# Visual Studio Junk
|
|
.vs/
|
|
*.opensdf
|
|
*.psess
|
|
*.sdf
|
|
*.sln.docstates
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.VC.db
|
|
*.VC.opendb
|
|
*.vsp
|
|
*.vspx
|
|
*.rsproj
|
|
*.sln
|
|
*.vcxproj
|
|
*.filters
|
|
|
|
|
|
# Cargo Junk
|
|
Cargo.lock
|
|
target/
|
|
|
|
# JetBrains Junk
|
|
.idea
|
|
*.iml
|
|
CMakeLists.txt
|