From: momoyon Date: Sun, 11 May 2025 07:00:31 +0000 (+0500) Subject: [Makefile] Add `all` target. X-Git-Url: https://www.git.momoyon.org/?a=commitdiff_plain;h=399e4f2b62726ac67091129459df47c3223c055e;p=lang.git [Makefile] Add `all` target. --- diff --git a/Makefile b/Makefile index 42d9a36..e8c32e4 100644 --- a/Makefile +++ b/Makefile @@ -8,3 +8,5 @@ lang: main.c debug: main.c $(CC) $(CFLAGS) -DDEBUG=1 -o lang-debug $< $(LDFLAGS) $(LIBS) + +all: lang debug