diff options
author | xengineering <me@xengineering.eu> | 2025-01-06 20:14:25 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-01-06 20:40:50 +0100 |
commit | 32dd70a7e01ff258f65043dc23d2d9a86731f69e (patch) | |
tree | 4d3b6c77dad8c59daf92101c5a57d1e0a2340e54 /Makefile | |
parent | c1c99b896d2aa1b2a5827b5a49f824472e0fc907 (diff) | |
download | soundbox-32dd70a7e01ff258f65043dc23d2d9a86731f69e.tar soundbox-32dd70a7e01ff258f65043dc23d2d9a86731f69e.tar.zst soundbox-32dd70a7e01ff258f65043dc23d2d9a86731f69e.zip |
pcb: Add BOM generation with GNU Make
This allows to export the BOM as CSV file via the Make build system.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -33,10 +33,11 @@ $(TARGET_DIR): debug mkdir -p $@ install -Dm 644 $(BUILD_DIR)/doc/documentation.pdf $@ -debug: doc +debug: doc pcb .PHONY: clean clean: rm -rf $(BUILD_DIR) include doc/doc.mk +include pcb/pcb.mk |