From ffcfd931cae451649ab7d400e58c0c020b064767 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 8 Nov 2023 19:52:05 -0500 Subject: [PATCH] makefile: sort SRCS alphabetically --- makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 384492d..68594ff 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,13 @@ OUTPUT = user.js -SRCS = tracking speculation cookies ui certificates referer media search +SRCS = \ + certificates \ + cookies \ + media \ + referer \ + search \ + speculation \ + tracking \ + ui $(OUTPUT): $(SRCS) cat $(SRCS) > $@ -- 2.43.2