diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
commit | 879fe74e2a18b7b89d35cf1fc0fb8829a1b70b3d (patch) | |
tree | f80e34fed55cc2b7c8f5fc5f59d6cc4a8245a617 /.gitignore | |
parent | 8af4b246d86df7bc906841689912534ea450cce5 (diff) |
Simultaneous Debug and Release builds.
[#29] Makefile now generates both release and debug builds on every
run. Salis.py can load the debug version on demand via a command line
argument (--debug). Release version is loaded by default.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ bin/__pycache__/* bin/common/pipe bin/error.log -bin/lib/libsalis.so +bin/lib/libsalis-*.so bin/sims/*.sim bin/sims/auto/*.auto.gz -build/*.d -build/*.o +build/**/*.d +build/**/*.o |