├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | build/ 3 | target/ 4 | obj/ 5 | dep/ 6 | test/bin 7 | test/obj 8 | *.o 9 | *~ 10 | \#* 11 | *.patch 12 | CppCheckResults.xml 13 | *.mk 14 | *.layout 15 | *.layout.orig 16 | *.depend 17 | *.pyc 18 | 19 | # Vim temporary files 20 | *.swp 21 | 22 | # Emacs gtags 23 | GPATH 24 | GRTAGS 25 | GTAGS 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This repository is deprecated 2 | 3 | The Infra Arcana project is now hosted on GitLab: 4 | 5 | https://gitlab.com/martin-tornqvist/ia 6 | --------------------------------------------------------------------------------