From ebcd22fa2dc8e6b8781d3e88950880f6bed423e7 Mon Sep 17 00:00:00 2001 From: Chris van Marle Date: Thu, 3 Jan 2019 08:07:59 +0100 Subject: [PATCH] Makefile: miditones_scroll by default too --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8e1946d..732e1cd 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,10 @@ +all: miditones miditones_scroll + miditones: miditones.c - gcc -O2 -Wall -o miditones miditones.c + gcc -O2 -Wall -o $@ $< miditones_scroll: miditones_scroll.c gcc -O2 -Wall -o $@ $< clean: - rm -f miditones + rm -f miditones miditones_scroll