summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2025-12-19 23:35:34 +0100
committerczjstmax <jstmaxlol@disroot.org>2025-12-19 23:35:34 +0100
commiteac0c0f41c805b2082a5701cee4f89a434244da4 (patch)
tree3b5df3a98a72fb935dbc28ae4e8a0a368c37a9ee
parent1c11d915a68e60bd191d43e348d56b9eab71b107 (diff)
fixed casing issue with makefile
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
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)