From: Michael Orlitzky Date: Thu, 9 Nov 2023 00:52:05 +0000 (-0500) Subject: makefile: sort SRCS alphabetically X-Git-Url: http://gitweb.michael.orlitzky.com/?p=firefox-user-prefs.git;a=commitdiff_plain;h=refs%2Fheads%2Fmaster makefile: sort SRCS alphabetically --- 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) > $@