├── .github └── workflows │ └── build.yml ├── Common.mk ├── Dockerfile ├── Kicad.mk ├── LICENCE ├── Makefile.example ├── README.md ├── bin └── kibom └── suppliers └── PCBWay.mk /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /Common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/Common.mk -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/Dockerfile -------------------------------------------------------------------------------- /Kicad.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/Kicad.mk -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/Makefile.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/README.md -------------------------------------------------------------------------------- /bin/kibom: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec python3 -m kibom "${@:1}" 3 | -------------------------------------------------------------------------------- /suppliers/PCBWay.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuna-f1sh/kicad-makefile/HEAD/suppliers/PCBWay.mk --------------------------------------------------------------------------------