From 2da55b7d62ed8f1b800ca208ce9ce65de1504397 Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Wed, 2 Feb 2022 08:36:18 +0100 Subject: [PATCH] Build only the tools by default --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57def23..e75bba5 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,9 @@ OUT ?= build/ CFLAGS ?= -O2 -g0 CFLAGS += -DVERSION="\"$(VERSION)\"" -I. -I$(OUT) -Wall -Wno-unused-variable -Wno-unused-function -all: $(OUT)ppkb-i2c-inputd $(OUT)ppkb-usb-flasher $(OUT)ppkb-usb-debugger $(OUT)fw-stock.bin $(OUT)ppkb-i2c-debugger $(OUT)ppkb-i2c-charger-ctl $(OUT)ppkb-i2c-flasher $(OUT)ppkb-i2c-selftest +tools: $(OUT)ppkb-i2c-inputd $(OUT)ppkb-usb-flasher $(OUT)ppkb-usb-debugger $(OUT)ppkb-i2c-debugger $(OUT)ppkb-i2c-charger-ctl $(OUT)ppkb-i2c-flasher $(OUT)ppkb-i2c-selftest + +all: tools $(OUT)fw-stock.bin $(OUT)ppkb-usb-flasher: usb-flasher.c common.c @mkdir -p $(OUT)