aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 430d4b9..82769b1 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -16,7 +16,8 @@ title_15m := "Medium Beeps"
title = $(title_$(1))
tracknum = $(tracknum_$(1))
-all: $(oggs)
+all: ogg mp3
+ogg: $(oggs)
mp3: $(mp3s)
5m.pcm: duration := 300
@@ -39,4 +40,4 @@ clean:
rm $(oggs) $(mp3s) $(pcms)
cargo clean
-.PHONY: all mp3 clean
+.PHONY: all ogg mp3 clean