From a12d17993a00a2ccf1035e95334e86177f54de1a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 Mar 2019 18:42:36 +0000 Subject: [PATCH] Makefile: split out all-ps and all-pdf NFC for existing all target --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9d8aab9..a7e4b4d 100644 --- a/Makefile +++ b/Makefile @@ -55,8 +55,10 @@ BOARDFILES= \ $(addprefix layout-test-, b m t a1m) -all: $(addsuffix .ps, $(BOARDFILES)) \ - $(addsuffix .pdf, $(BOARDFILES)) +all: all-ps all-pdf + +all-ps: $(addsuffix .ps, $(BOARDFILES)) +all-pdf: $(addsuffix .pdf, $(BOARDFILES)) %.pdf: %.ps Makefile $(PS2PDF) $(PS2PDF_FLAGS) $< $@.tmp && $i -- 2.30.2