From afbb4794d7611e6e70284c1d1ca91cfe9eb08f4c Mon Sep 17 00:00:00 2001 From: czjstmax Date: Fri, 19 Dec 2025 23:35:34 +0100 Subject: fixed casing issue with makefile Signed-off-by: czjstmax --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6243fb3..7b1adfc 100644 --- a/Makefile +++ b/Makefile @@ -14,20 +14,20 @@ INSTALL_TARGET = crbc INSTALL_DEBUG_TARGET = $(INSTALL_TARGET)_debug # Compile all -All: +all: $(CC) $(CFLAGS) $(SRC) -o $(TARGET) $(CC) $(DEBUG_CFLAGS) $(SRC) -o $(DEBUG_TARGET) # Compile release (same as 'make') -Release: +release: $(CC) $(CFLAGS) $(SRC) -o $(TARGET) # Compile debug -Debug: +rebug: $(CC) $(DEBUG_CFLAGS) $(SRC) -o $(DEBUG_TARGET) # Clean all (release + debug) -cleanall: +clean cleanall: rm -f $(TARGET) rm -f $(DEBUG_TARGET) -- cgit v1.3.1