From c7104f8da578767bf15d16cb02543919cea9fe9b Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 1 Jun 2022 22:20:23 -0300 Subject: dynamic.mk: Add "default" rule Keep the "all" rule with its previous meaning, and only add this one to make it appear before the "include" line, so that it becomes the default target. Moving the "all" target there would make it depend on values that only appear after it, from the contents of the "generaated.mk" include line. This indirection allows for the "all" target to keep having those dynammic dependencies, but also to be invoked directly by the default target, "default". --- dynamic.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'dynamic.mk') diff --git a/dynamic.mk b/dynamic.mk index 9bb1632..07ab401 100644 --- a/dynamic.mk +++ b/dynamic.mk @@ -19,6 +19,7 @@ .flac.ogg: ffmpeg -y -i $< -ar 48000 -vn -c:a libvorbis -b:a 320k $@ +default: all include generated.mk -- cgit v1.2.3