commit 71276da46f3146b0151c0ce9c65723e4756646b5
parent 1b5aa7bf7c87654323b2315663613ae9a314cb82
Author: Egor Achkasov <eaachkasov@edu.hse.ru>
Date: Sat, 16 Nov 2024 21:20:02 +0100
Make all a default make target
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
@@ -9,12 +9,12 @@ OBJ += $(OBJDIR)/main.o
TARGET = $(BUILDDIR)/mmse
+all: $(TARGET)
+
# Debug target
dbg: CFLAGS += -g
dbg: $(TARGET)
-all: $(TARGET)
-
# Compile the elf
$(TARGET): $(OBJ)
@mkdir -p $(BUILDDIR)